* Enables explicit method chaining on the wrapper object. * * @name chain * @memberOf _ * @category Chain * @returns {Object} Returns the new `lodash` wrapper instance. * @example * * var users = [ * { 'user': 'barney', 'age': 36 }, * { 'user': '
()
| 7459 | * // => { 'user': 'barney' } |
| 7460 | */ |
| 7461 | function wrapperChain() { |
| 7462 | return chain(this); |
| 7463 | } |
| 7464 | |
| 7465 | /** |
| 7466 | * Executes the chained sequence and returns the wrapped result. |