Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80742 views
1
var baseWrapperValue = require('../internal/baseWrapperValue');
2
3
/**
4
* Executes the chained sequence to extract the unwrapped value.
5
*
6
* @name value
7
* @memberOf _
8
* @alias run, toJSON, valueOf
9
* @category Chain
10
* @returns {*} Returns the resolved unwrapped value.
11
* @example
12
*
13
* _([1, 2, 3]).value();
14
* // => [1, 2, 3]
15
*/
16
function wrapperValue() {
17
return baseWrapperValue(this.__wrapped__, this.__actions__);
18
}
19
20
module.exports = wrapperValue;
21
22