Sha256: 84d51a53ea72e167bf00a4dfd7487d1af3c9907da9c81973d27a334d44730d40

Contents?: true

Size: 1.75 KB

Versions: 273

Compression:

Stored size: 1.75 KB

Contents

var baseWrapperValue = require('./_baseWrapperValue'),
    getView = require('./_getView'),
    isArray = require('./isArray');

/** Used to indicate the type of lazy iteratees. */
var LAZY_FILTER_FLAG = 1,
    LAZY_MAP_FLAG = 2;

/* Built-in method references for those with the same name as other `lodash` methods. */
var nativeMin = Math.min;

/**
 * Extracts the unwrapped value from its lazy wrapper.
 *
 * @private
 * @name value
 * @memberOf LazyWrapper
 * @returns {*} Returns the unwrapped value.
 */
function lazyValue() {
  var array = this.__wrapped__.value(),
      dir = this.__dir__,
      isArr = isArray(array),
      isRight = dir < 0,
      arrLength = isArr ? array.length : 0,
      view = getView(0, arrLength, this.__views__),
      start = view.start,
      end = view.end,
      length = end - start,
      index = isRight ? end : (start - 1),
      iteratees = this.__iteratees__,
      iterLength = iteratees.length,
      resIndex = 0,
      takeCount = nativeMin(length, this.__takeCount__);

  if (!isArr || (!isRight && arrLength == length && takeCount == length)) {
    return baseWrapperValue(array, this.__actions__);
  }
  var result = [];

  outer:
  while (length-- && resIndex < takeCount) {
    index += dir;

    var iterIndex = -1,
        value = array[index];

    while (++iterIndex < iterLength) {
      var data = iteratees[iterIndex],
          iteratee = data.iteratee,
          type = data.type,
          computed = iteratee(value);

      if (type == LAZY_MAP_FLAG) {
        value = computed;
      } else if (!computed) {
        if (type == LAZY_FILTER_FLAG) {
          continue outer;
        } else {
          break outer;
        }
      }
    }
    result[resIndex++] = value;
  }
  return result;
}

module.exports = lazyValue;

Version data entries

273 entries across 272 versions & 29 rubygems

Version Path
sumomo-0.8.17 data/sumomo/api_modules/node_modules/lodash/_lazyValue.js
sumomo-0.8.16 data/sumomo/api_modules/node_modules/lodash/_lazyValue.js
disco_app-0.18.0 test/dummy/node_modules/lodash/_lazyValue.js
disco_app-0.18.2 test/dummy/node_modules/lodash/_lazyValue.js
sumomo-0.8.15 data/sumomo/api_modules/node_modules/lodash/_lazyValue.js
trusty-cms-5.0.7 node_modules/lodash/_lazyValue.js
appmap-0.72.2 ./node_modules/lodash/_lazyValue.js
trusty-cms-5.0.6 node_modules/lodash/_lazyValue.js
appmap-0.72.1 ./node_modules/lodash/_lazyValue.js
appmap-0.72.0 ./node_modules/lodash/_lazyValue.js
trusty-cms-5.0.5 node_modules/lodash/_lazyValue.js
trusty-cms-5.0.4 node_modules/lodash/_lazyValue.js
appmap-0.71.0 ./node_modules/lodash/_lazyValue.js
disco_app-0.16.1 test/dummy/node_modules/lodash/_lazyValue.js
appmap-0.70.2 ./node_modules/lodash/_lazyValue.js
sumomo-0.8.14 data/sumomo/api_modules/node_modules/lodash/_lazyValue.js
appmap-0.70.1 ./node_modules/lodash/_lazyValue.js
appmap-0.70.0 ./node_modules/lodash/_lazyValue.js
appmap-0.69.0 ./node_modules/lodash/_lazyValue.js
sumomo-0.8.13 data/sumomo/api_modules/node_modules/lodash/_lazyValue.js