Lodash

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

“Seq” Methods

_.prototype.commit()

执行链式队列并返回结果。

添加版本

3.2.0

返回

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

例子

var array = [1, 2];
var wrapped = _(array).push(3);
 
console.log(array);
// => [1, 2]
 
wrapped = wrapped.commit();
console.log(array);
// => [1, 2, 3]
 
wrapped.last();
// => 3
 
console.log(array);
// => [1, 2, 3]

数组 Array

集合 Collection

日期 Date

函数 Function

Lang

数学 Math

数字 Number

对象 Object

Seq

字符串 String

实用函数 Util

Properties

Methods