1 var baseCreate = require(
'./_baseCreate'),
2 baseLodash = require(
'./_baseLodash');
5 var MAX_ARRAY_LENGTH = 4294967295;
14 function LazyWrapper(value) {
15 this.__wrapped__ = value;
16 this.__actions__ = [];
18 this.__filtered__ =
false;
19 this.__iteratees__ = [];
20 this.__takeCount__ = MAX_ARRAY_LENGTH;
25 LazyWrapper.prototype = baseCreate(baseLodash.prototype);
26 LazyWrapper.prototype.constructor = LazyWrapper;
28 module.exports = LazyWrapper;