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
trusty-festivity-extension-2.3.30 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.3.29 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.3.29 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.3.28 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.3.28 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.3.27 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.3.27 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.3.26 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.3.26 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.3.25 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.3.25 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.3.24 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.3.24 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.3.23 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/baseWrapperValue.js
trusty-festivity-extension-2.3.23 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/baseWrapperValue.js
es6_tilt-0.1.2 test/dummy/app/assets/javascripts/node_modules/lodash/internal/baseWrapperValue.js
es6_tilt-0.1.2 test/dummy/node_modules/lodash/internal/baseWrapperValue.js
es6_tilt-0.1.1 test/dummy/node_modules/lodash/internal/baseWrapperValue.js
es6_tilt-0.1.1 test/dummy/app/assets/javascripts/node_modules/lodash/internal/baseWrapperValue.js
es6_tilt-0.1.0 test/dummy/app/assets/javascripts/node_modules/lodash/internal/baseWrapperValue.js