Sha256: 48b34858ac0dcc49bbf4e62a863a6bdd0dad39d238a50de389ac2cd938667e6e
Contents?: true
Size: 611 Bytes
Versions: 300
Compression:
Stored size: 611 Bytes
Contents
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;
Version data entries
300 entries across 276 versions & 32 rubygems