Sha256: 8f825014b114912e25890aabc20dd2edee87f276d091a886aeaed1e1d06ff6e1

Contents?: true

Size: 873 Bytes

Versions: 153

Compression:

Stored size: 873 Bytes

Contents

var LazyWrapper = require('./LazyWrapper'),
    arrayPush = require('./arrayPush');

/**
 * The base implementation of `wrapperValue` which returns the result of
 * performing a sequence of actions on the unwrapped `value`, where each
 * successive action is supplied the return value of the previous.
 *
 * @private
 * @param {*} value The unwrapped value.
 * @param {Array} actions Actions to peform to resolve the unwrapped value.
 * @returns {*} Returns the resolved value.
 */
function baseWrapperValue(value, actions) {
  var result = value;
  if (result instanceof LazyWrapper) {
    result = result.value();
  }
  var index = -1,
      length = actions.length;

  while (++index < length) {
    var action = actions[index];
    result = action.func.apply(action.thisArg, arrayPush([result], action.args));
  }
  return result;
}

module.exports = baseWrapperValue;

Version data entries

153 entries across 80 versions & 8 rubygems

Version Path
ilog-0.4.1 node_modules/contents/node_modules/lodash/internal/baseWrapperValue.js
ilog-0.4.1 node_modules/babel-plugin-proto-to-assign/node_modules/lodash/internal/baseWrapperValue.js
ilog-0.4.1 node_modules/babel/node_modules/lodash/internal/baseWrapperValue.js
ilog-0.4.0 node_modules/babel/node_modules/lodash/internal/baseWrapperValue.js
ilog-0.4.0 node_modules/contents/node_modules/lodash/internal/baseWrapperValue.js
ilog-0.4.0 node_modules/babel-plugin-proto-to-assign/node_modules/lodash/internal/baseWrapperValue.js
ilog-0.3.3 node_modules/babel/node_modules/lodash/internal/baseWrapperValue.js
ilog-0.3.3 node_modules/contents/node_modules/lodash/internal/baseWrapperValue.js
ilog-0.3.3 node_modules/babel-plugin-proto-to-assign/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.6.3 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.6.3 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.6.2 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.6.2 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.6.1 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.6.1 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/baseWrapperValue.js
xcodebuild-helper-1.2.5 externals/ios-sim-master/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.6 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.6 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.5.19 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.5.19 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/baseWrapperValue.js