Urara-Blog/node_modules/.pnpm-store/v3/files/b3/8160a4cd17f39b1cfb6b1eec770725851b4438e79d1bf73d0b1c4c0139337d57f97afbfdfa3e97953e855853bc0f80cb1e29397410a2fcfe1023a798d88607
2022-08-14 01:14:53 +08:00

22 lines
611 B
Text

var baseCreate = require('./_baseCreate'),
baseLodash = require('./_baseLodash');
/**
* The base constructor for creating `lodash` wrapper objects.
*
* @private
* @param {*} value The value to wrap.
* @param {boolean} [chainAll] Enable explicit method chain sequences.
*/
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;