commit

Seq
since 3.2.0

Returns

Object the new `lodash` wrapper instance.

Executes the chain sequence and returns the wrapped result.

Example of Lodash _.commit

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]