* Creates a `lodash` object that wraps `value` with explicit method * chaining enabled. * * @static * @memberOf _ * @category Chain * @param {*} value The value to wrap. * @returns {Object} Returns the new `lodash` wrapper instance. * @example * * va
(value)
| 7375 | * // => 'pebbles is 1' |
| 7376 | */ |
| 7377 | function chain(value) { |
| 7378 | var result = lodash(value); |
| 7379 | result.__chain__ = true; |
| 7380 | return result; |
| 7381 | } |
| 7382 | |
| 7383 | /** |
| 7384 | * This method invokes `interceptor` and returns `value`. The interceptor is |
no test coverage detected