Files
lodash/wrapperChain.js
John-David Dalton 24a4285b70 Bump to v4.2.0.
2016-02-02 00:06:39 -08:00

34 lines
664 B
JavaScript

var chain = require('./chain');
/**
* Enables explicit method chaining on the wrapper object.
*
* @name chain
* @memberOf _
* @category Seq
* @returns {Object} Returns the new `lodash` wrapper instance.
* @example
*
* var users = [
* { 'user': 'barney', 'age': 36 },
* { 'user': 'fred', 'age': 40 }
* ];
*
* // A sequence without explicit chaining.
* _(users).head();
* // => { 'user': 'barney', 'age': 36 }
*
* // A sequence with explicit chaining.
* _(users)
* .chain()
* .head()
* .pick('user')
* .value();
* // => { 'user': 'barney' }
*/
function wrapperChain() {
return chain(this);
}
module.exports = wrapperChain;