* Creates a `lodash` wrapper instance that wraps `value` with explicit method * chain sequences enabled. The result of such sequences must be unwrapped * with `_#value`. * * @static * @memberOf _ * @since 1.3.0 * @category Seq * @param {*} value The value to w
(value)
| 16368 | * // => 'pebbles is 1' |
| 16369 | */ |
| 16370 | function chain(value) { |
| 16371 | var result = lodash(value); |
| 16372 | result.__chain__ = true; |
| 16373 | return result; |
| 16374 | } |
| 16375 | |
| 16376 | /** |
| 16377 | * This method invokes `interceptor` and returns `value`. The interceptor |
no test coverage detected