Urara-Blog/node_modules/.pnpm-store/v3/files/c6/7e40d7c13d5a0b43724a4714ff6cb451709caa0fc29fabacd3f66f9201ed0a7120f01455d4d3e340752e28f96582ee377f451ab66548e87dc62faf3b54e667
2022-08-14 01:14:53 +08:00

21 lines
455 B
Text

var baseWrapperValue = require('./_baseWrapperValue');
/**
* Executes the chain sequence to resolve the unwrapped value.
*
* @name value
* @memberOf _
* @since 0.1.0
* @alias toJSON, valueOf
* @category Seq
* @returns {*} Returns the resolved unwrapped value.
* @example
*
* _([1, 2, 3]).value();
* // => [1, 2, 3]
*/
function wrapperValue() {
return baseWrapperValue(this.__wrapped__, this.__actions__);
}
module.exports = wrapperValue;