1 var chain = require('./chain');
4 * Enables explicit method chaining on the wrapper object.
9 * @returns {Object} Returns the new `lodash` wrapper instance.
13 * { 'user': 'barney', 'age': 36 },
14 * { 'user': 'fred', 'age': 40 }
17 * // without explicit chaining
19 * // => { 'user': 'barney', 'age': 36 }
21 * // with explicit chaining
26 * // => { 'user': 'barney' }
28 function wrapperChain() {
32 module.exports = wrapperChain;