basant307/AI_Governance_Project
048
1var baseWrapperValue = require('./_baseWrapperValue');2 3/**4 * Executes the chain sequence to resolve the unwrapped value.5 *6 * @name value7 * @memberOf _8 * @since 0.1.09 * @alias toJSON, valueOf10 * @category Seq11 * @returns {*} Returns the resolved unwrapped value.12 * @example13 *14 * _([1, 2, 3]).value();15 * // => [1, 2, 3]16 */17function wrapperValue() {18 return baseWrapperValue(this.__wrapped__, this.__actions__);19}20 21module.exports = wrapperValue;22 