00001 var baseCreate = require('./_baseCreate'),
00002 baseLodash = require('./_baseLodash');
00003
00005 var MAX_ARRAY_LENGTH = 4294967295;
00006
00014 function LazyWrapper(value) {
00015 this.__wrapped__ = value;
00016 this.__actions__ = [];
00017 this.__dir__ = 1;
00018 this.__filtered__ = false;
00019 this.__iteratees__ = [];
00020 this.__takeCount__ = MAX_ARRAY_LENGTH;
00021 this.__views__ = [];
00022 }
00023
00024
00025 LazyWrapper.prototype = baseCreate(baseLodash.prototype);
00026 LazyWrapper.prototype.constructor = LazyWrapper;
00027
00028 module.exports = LazyWrapper;