Lodash

是一个一致性、模块化、高性能的 JavaScript 实用工具库。

“Seq” Methods

_.chain(value)

创建一个lodash包装实例,包装value以启用显式链模式。要解除链必须使用 _#value 方法。

添加版本

1.3.0

参数

  1. value (*): 要包装的值。

返回

(Object): 返回 lodash 包装的实例。

例子

var users = [
  { 'user''barney',  'age'36 },
  { 'user''fred',    'age'40 },
  { 'user''pebbles', 'age'1 }
];
 
var youngest = _
  .chain(users)
  .sortBy('age')
  .map(function(o) {
    return o.user + ' is ' + o.age;
  })
  .head()
  .value();
// => 'pebbles is 1'

数组 Array

集合 Collection

日期 Date

函数 Function

Lang

数学 Math

数字 Number

对象 Object

Seq

字符串 String

实用函数 Util

Properties

Methods