MCPcopy
hub / github.com/Kong/insomnia / chain

Function chain

packages/insomnia/bin/yarn-standalone.js:16370–16374  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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

Callers 1

wrapperChainFunction · 0.85

Calls 1

lodashFunction · 0.85

Tested by

no test coverage detected