artdaq_node_server  v1_00_07
 All Classes Namespaces Files Variables Pages
_LazyWrapper.js
1 var baseCreate = require('./_baseCreate'),
2  baseLodash = require('./_baseLodash');
3 
5 var MAX_ARRAY_LENGTH = 4294967295;
6 
14 function LazyWrapper(value) {
15  this.__wrapped__ = value;
16  this.__actions__ = [];
17  this.__dir__ = 1;
18  this.__filtered__ = false;
19  this.__iteratees__ = [];
20  this.__takeCount__ = MAX_ARRAY_LENGTH;
21  this.__views__ = [];
22 }
23 
24 // Ensure `LazyWrapper` is an instance of `baseLodash`.
25 LazyWrapper.prototype = baseCreate(baseLodash.prototype);
26 LazyWrapper.prototype.constructor = LazyWrapper;
27 
28 module.exports = LazyWrapper;