00001 var baseCreate = require('./_baseCreate'), 00002 baseLodash = require('./_baseLodash'); 00003 00011 function LodashWrapper(value, chainAll) { 00012 this.__wrapped__ = value; 00013 this.__actions__ = []; 00014 this.__chain__ = !!chainAll; 00015 this.__index__ = 0; 00016 this.__values__ = undefined; 00017 } 00018 00019 LodashWrapper.prototype = baseCreate(baseLodash.prototype); 00020 LodashWrapper.prototype.constructor = LodashWrapper; 00021 00022 module.exports = LodashWrapper;