aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/internal/LazyWrapper.js
diff options
context:
space:
mode:
authorMurali <murali.p@huawei.com>2017-10-25 12:47:34 +0000
committerMurali <murali.p@huawei.com>2017-10-25 12:47:34 +0000
commit0327e655a3cb876dff4d9e320eb520077a82f874 (patch)
treefbeb6f784bbf3d35f3bc34dcaadb4826e9dfdaa9 /vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/internal/LazyWrapper.js
parente8ddb8424f0a6ecf0a1b46ca46f01872b6294bcd (diff)
Fix license issues reported by Steve
Removed node_modules from gerrit and added during installation Change-Id: I616da4ca564724b5cd496849383c62ca121794ac Jira:VNFSDK-115 Signed-off-by: Murali <murali.p@huawei.com>
Diffstat (limited to 'vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/internal/LazyWrapper.js')
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/internal/LazyWrapper.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/internal/LazyWrapper.js b/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/internal/LazyWrapper.js
deleted file mode 100644
index d9c80804..00000000
--- a/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/internal/LazyWrapper.js
+++ /dev/null
@@ -1,26 +0,0 @@
-var baseCreate = require('./baseCreate'),
- baseLodash = require('./baseLodash');
-
-/** Used as references for `-Infinity` and `Infinity`. */
-var POSITIVE_INFINITY = Number.POSITIVE_INFINITY;
-
-/**
- * Creates a lazy wrapper object which wraps `value` to enable lazy evaluation.
- *
- * @private
- * @param {*} value The value to wrap.
- */
-function LazyWrapper(value) {
- this.__wrapped__ = value;
- this.__actions__ = [];
- this.__dir__ = 1;
- this.__filtered__ = false;
- this.__iteratees__ = [];
- this.__takeCount__ = POSITIVE_INFINITY;
- this.__views__ = [];
-}
-
-LazyWrapper.prototype = baseCreate(baseLodash.prototype);
-LazyWrapper.prototype.constructor = LazyWrapper;
-
-module.exports = LazyWrapper;