Version 1
[yaffs-website] / node_modules / grunt-legacy-log-utils / node_modules / lodash / _LodashWrapper.js
diff --git a/node_modules/grunt-legacy-log-utils/node_modules/lodash/_LodashWrapper.js b/node_modules/grunt-legacy-log-utils/node_modules/lodash/_LodashWrapper.js
new file mode 100644 (file)
index 0000000..7c255b2
--- /dev/null
@@ -0,0 +1,22 @@
+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 chaining for all wrapper methods.
+ */
+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;