12345678910111213141516171819202122 |
- var baseCreate = require('./_baseCreate'),
- baseLodash = require('./_baseLodash');
- function LodashWrapper(value, chainAll) {
- this.__wrapped__ = value;
- this.__actions__ = [];
- this.__chain__ = !!chainAll;
- this.__index__ = 0;
- this.__values__ = undefined;
- }
- LodashWrapper.prototype = baseCreate(baseLodash.prototype);
- LodashWrapper.prototype.constructor = LodashWrapper;
- module.exports = LodashWrapper;
|