artdaq_node_server  v1_00_08
 All Classes Namespaces Files Variables Pages
_LodashWrapper.js
1 var baseCreate = require('./_baseCreate'),
2  baseLodash = require('./_baseLodash');
3 
11 function LodashWrapper(value, chainAll) {
12  this.__wrapped__ = value;
13  this.__actions__ = [];
14  this.__chain__ = !!chainAll;
15  this.__index__ = 0;
16  this.__values__ = undefined;
17 }
18 
19 LodashWrapper.prototype = baseCreate(baseLodash.prototype);
20 LodashWrapper.prototype.constructor = LodashWrapper;
21 
22 module.exports = LodashWrapper;