vue-app-sdk
Version:
15 lines (14 loc) • 416 B
JavaScript
import baseCreate from "./_baseCreate.js";
import baseLodash from "./_baseLodash.js";
function LodashWrapper(value, chainAll) {
this.__wrapped__ = value;
this.__actions__ = [];
this.__chain__ = !!chainAll;
this.__index__ = 0;
this.__values__ = void 0;
}
LodashWrapper.prototype = baseCreate(baseLodash.prototype);
LodashWrapper.prototype.constructor = LodashWrapper;
export {
LodashWrapper as default
};