summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-portal-FE/client/bower_components/lodash/vendor/underscore')
-rw-r--r--ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/LICENSE23
-rw-r--r--ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/arrays.js555
-rw-r--r--ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/chaining.js99
-rw-r--r--ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/collections.js896
-rw-r--r--ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/cross-document.js141
-rw-r--r--ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/functions.js728
-rw-r--r--ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/objects.js1102
-rw-r--r--ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/utility.js420
-rw-r--r--ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/underscore-min.js6
-rw-r--r--ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/underscore.js1620
10 files changed, 0 insertions, 5590 deletions
diff --git a/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/LICENSE b/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/LICENSE
deleted file mode 100644
index 447239f3..00000000
--- a/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/LICENSE
+++ /dev/null
@@ -1,23 +0,0 @@
-Copyright (c) 2009-2016 Jeremy Ashkenas, DocumentCloud and Investigative
-Reporters & Editors
-
-Permission is hereby granted, free of charge, to any person
-obtaining a copy of this software and associated documentation
-files (the "Software"), to deal in the Software without
-restriction, including without limitation the rights to use,
-copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following
-conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
-OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
-HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
-OTHER DEALINGS IN THE SOFTWARE.
diff --git a/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/arrays.js b/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/arrays.js
deleted file mode 100644
index 748edea4..00000000
--- a/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/arrays.js
+++ /dev/null
@@ -1,555 +0,0 @@
-(function() {
- var _ = typeof require == 'function' ? require('..') : window._;
-
- QUnit.module('Arrays');
-
- QUnit.test('first', function(assert) {
- assert.equal(_.first([1, 2, 3]), 1, 'can pull out the first element of an array');
- assert.equal(_([1, 2, 3]).first(), 1, 'can perform OO-style "first()"');
- assert.deepEqual(_.first([1, 2, 3], 0), [], 'returns an empty array when n <= 0 (0 case)');
- assert.deepEqual(_.first([1, 2, 3], -1), [], 'returns an empty array when n <= 0 (negative case)');
- assert.deepEqual(_.first([1, 2, 3], 2), [1, 2], 'can fetch the first n elements');
- assert.deepEqual(_.first([1, 2, 3], 5), [1, 2, 3], 'returns the whole array if n > length');
- var result = (function(){ return _.first(arguments); }(4, 3, 2, 1));
- assert.equal(result, 4, 'works on an arguments object');
- result = _.map([[1, 2, 3], [1, 2, 3]], _.first);
- assert.deepEqual(result, [1, 1], 'works well with _.map');
- assert.equal(_.first(null), void 0, 'returns undefined when called on null');
- });
-
- QUnit.test('head', function(assert) {
- assert.strictEqual(_.head, _.first, 'is an alias for first');
- });
-
- QUnit.test('take', function(assert) {
- assert.strictEqual(_.take, _.first, 'is an alias for first');
- });
-
- QUnit.test('rest', function(assert) {
- var numbers = [1, 2, 3, 4];
- assert.deepEqual(_.rest(numbers), [2, 3, 4], 'fetches all but the first element');
- assert.deepEqual(_.rest(numbers, 0), [1, 2, 3, 4], 'returns the whole array when index is 0');
- assert.deepEqual(_.rest(numbers, 2), [3, 4], 'returns elements starting at the given index');
- var result = (function(){ return _(arguments).rest(); }(1, 2, 3, 4));
- assert.deepEqual(result, [2, 3, 4], 'works on an arguments object');
- result = _.map([[1, 2, 3], [1, 2, 3]], _.rest);
- assert.deepEqual(_.flatten(result), [2, 3, 2, 3], 'works well with _.map');
- });
-
- QUnit.test('tail', function(assert) {
- assert.strictEqual(_.tail, _.rest, 'is an alias for rest');
- });
-
- QUnit.test('drop', function(assert) {
- assert.strictEqual(_.drop, _.rest, 'is an alias for rest');
- });
-
- QUnit.test('initial', function(assert) {
- assert.deepEqual(_.initial([1, 2, 3, 4, 5]), [1, 2, 3, 4], 'returns all but the last element');
- assert.deepEqual(_.initial([1, 2, 3, 4], 2), [1, 2], 'returns all but the last n elements');
- assert.deepEqual(_.initial([1, 2, 3, 4], 6), [], 'returns an empty array when n > length');
- var result = (function(){ return _(arguments).initial(); }(1, 2, 3, 4));
- assert.deepEqual(result, [1, 2, 3], 'works on an arguments object');
- result = _.map([[1, 2, 3], [1, 2, 3]], _.initial);
- assert.deepEqual(_.flatten(result), [1, 2, 1, 2], 'works well with _.map');
- });
-
- QUnit.test('last', function(assert) {
- assert.equal(_.last([1, 2, 3]), 3, 'can pull out the last element of an array');
- assert.equal(_([1, 2, 3]).last(), 3, 'can perform OO-style "last()"');
- assert.deepEqual(_.last([1, 2, 3], 0), [], 'returns an empty array when n <= 0 (0 case)');
- assert.deepEqual(_.last([1, 2, 3], -1), [], 'returns an empty array when n <= 0 (negative case)');
- assert.deepEqual(_.last([1, 2, 3], 2), [2, 3], 'can fetch the last n elements');
- assert.deepEqual(_.last([1, 2, 3], 5), [1, 2, 3], 'returns the whole array if n > length');
- var result = (function(){ return _(arguments).last(); }(1, 2, 3, 4));
- assert.equal(result, 4, 'works on an arguments object');
- result = _.map([[1, 2, 3], [1, 2, 3]], _.last);
- assert.deepEqual(result, [3, 3], 'works well with _.map');
- assert.equal(_.last(null), void 0, 'returns undefined when called on null');
- });
-
- QUnit.test('compact', function(assert) {
- assert.deepEqual(_.compact([1, false, null, 0, '', void 0, NaN, 2]), [1, 2], 'removes all falsy values');
- var result = (function(){ return _.compact(arguments); }(0, 1, false, 2, false, 3));
- assert.deepEqual(result, [1, 2, 3], 'works on an arguments object');
- result = _.map([[1, false, false], [false, false, 3]], _.compact);
- assert.deepEqual(result, [[1], [3]], 'works well with _.map');
- });
-
- QUnit.test('flatten', function(assert) {
- assert.deepEqual(_.flatten(null), [], 'supports null');
- assert.deepEqual(_.flatten(void 0), [], 'supports undefined');
-
- assert.deepEqual(_.flatten([[], [[]], []]), [], 'supports empty arrays');
- assert.deepEqual(_.flatten([[], [[]], []], true), [[]], 'can shallowly flatten empty arrays');
-
- var list = [1, [2], [3, [[[4]]]]];
- assert.deepEqual(_.flatten(list), [1, 2, 3, 4], 'can flatten nested arrays');
- assert.deepEqual(_.flatten(list, true), [1, 2, 3, [[[4]]]], 'can shallowly flatten nested arrays');
- var result = (function(){ return _.flatten(arguments); }(1, [2], [3, [[[4]]]]));
- assert.deepEqual(result, [1, 2, 3, 4], 'works on an arguments object');
- list = [[1], [2], [3], [[4]]];
- assert.deepEqual(_.flatten(list, true), [1, 2, 3, [4]], 'can shallowly flatten arrays containing only other arrays');
-
- assert.equal(_.flatten([_.range(10), _.range(10), 5, 1, 3], true).length, 23, 'can flatten medium length arrays');
- assert.equal(_.flatten([_.range(10), _.range(10), 5, 1, 3]).length, 23, 'can shallowly flatten medium length arrays');
- assert.equal(_.flatten([new Array(1000000), _.range(56000), 5, 1, 3]).length, 1056003, 'can handle massive arrays');
- assert.equal(_.flatten([new Array(1000000), _.range(56000), 5, 1, 3], true).length, 1056003, 'can handle massive arrays in shallow mode');
-
- var x = _.range(100000);
- for (var i = 0; i < 1000; i++) x = [x];
- assert.deepEqual(_.flatten(x), _.range(100000), 'can handle very deep arrays');
- assert.deepEqual(_.flatten(x, true), x[0], 'can handle very deep arrays in shallow mode');
- });
-
- QUnit.test('without', function(assert) {
- var list = [1, 2, 1, 0, 3, 1, 4];
- assert.deepEqual(_.without(list, 0, 1), [2, 3, 4], 'removes all instances of the given values');
- var result = (function(){ return _.without(arguments, 0, 1); }(1, 2, 1, 0, 3, 1, 4));
- assert.deepEqual(result, [2, 3, 4], 'works on an arguments object');
-
- list = [{one: 1}, {two: 2}];
- assert.deepEqual(_.without(list, {one: 1}), list, 'compares objects by reference (value case)');
- assert.deepEqual(_.without(list, list[0]), [{two: 2}], 'compares objects by reference (reference case)');
- });
-
- QUnit.test('sortedIndex', function(assert) {
- var numbers = [10, 20, 30, 40, 50];
- var indexFor35 = _.sortedIndex(numbers, 35);
- assert.equal(indexFor35, 3, 'finds the index at which a value should be inserted to retain order');
- var indexFor30 = _.sortedIndex(numbers, 30);
- assert.equal(indexFor30, 2, 'finds the smallest index at which a value could be inserted to retain order');
-
- var objects = [{x: 10}, {x: 20}, {x: 30}, {x: 40}];
- var iterator = function(obj){ return obj.x; };
- assert.strictEqual(_.sortedIndex(objects, {x: 25}, iterator), 2, 'uses the result of `iterator` for order comparisons');
- assert.strictEqual(_.sortedIndex(objects, {x: 35}, 'x'), 3, 'when `iterator` is a string, uses that key for order comparisons');
-
- var context = {1: 2, 2: 3, 3: 4};
- iterator = function(obj){ return this[obj]; };
- assert.strictEqual(_.sortedIndex([1, 3], 2, iterator, context), 1, 'can execute its iterator in the given context');
-
- var values = [0, 1, 3, 7, 15, 31, 63, 127, 255, 511, 1023, 2047, 4095, 8191, 16383, 32767, 65535, 131071, 262143, 524287,
- 1048575, 2097151, 4194303, 8388607, 16777215, 33554431, 67108863, 134217727, 268435455, 536870911, 1073741823, 2147483647];
- var largeArray = Array(Math.pow(2, 32) - 1);
- var length = values.length;
- // Sparsely populate `array`
- while (length--) {
- largeArray[values[length]] = values[length];
- }
- assert.equal(_.sortedIndex(largeArray, 2147483648), 2147483648, 'works with large indexes');
- });
-
- QUnit.test('uniq', function(assert) {
- var list = [1, 2, 1, 3, 1, 4];
- assert.deepEqual(_.uniq(list), [1, 2, 3, 4], 'can find the unique values of an unsorted array');
- list = [1, 1, 1, 2, 2, 3];
- assert.deepEqual(_.uniq(list, true), [1, 2, 3], 'can find the unique values of a sorted array faster');
-
- list = [{name: 'Moe'}, {name: 'Curly'}, {name: 'Larry'}, {name: 'Curly'}];
- var expected = [{name: 'Moe'}, {name: 'Curly'}, {name: 'Larry'}];
- var iterator = function(stooge) { return stooge.name; };
- assert.deepEqual(_.uniq(list, false, iterator), expected, 'uses the result of `iterator` for uniqueness comparisons (unsorted case)');
- assert.deepEqual(_.uniq(list, iterator), expected, '`sorted` argument defaults to false when omitted');
- assert.deepEqual(_.uniq(list, 'name'), expected, 'when `iterator` is a string, uses that key for comparisons (unsorted case)');
-
- list = [{score: 8}, {score: 10}, {score: 10}];
- expected = [{score: 8}, {score: 10}];
- iterator = function(item) { return item.score; };
- assert.deepEqual(_.uniq(list, true, iterator), expected, 'uses the result of `iterator` for uniqueness comparisons (sorted case)');
- assert.deepEqual(_.uniq(list, true, 'score'), expected, 'when `iterator` is a string, uses that key for comparisons (sorted case)');
-
- assert.deepEqual(_.uniq([{0: 1}, {0: 1}, {0: 1}, {0: 2}], 0), [{0: 1}, {0: 2}], 'can use falsey pluck like iterator');
-
- var result = (function(){ return _.uniq(arguments); }(1, 2, 1, 3, 1, 4));
- assert.deepEqual(result, [1, 2, 3, 4], 'works on an arguments object');
-
- var a = {}, b = {}, c = {};
- assert.deepEqual(_.uniq([a, b, a, b, c]), [a, b, c], 'works on values that can be tested for equivalency but not ordered');
-
- assert.deepEqual(_.uniq(null), [], 'returns an empty array when `array` is not iterable');
-
- var context = {};
- list = [3];
- _.uniq(list, function(value, index, array) {
- assert.strictEqual(this, context, 'executes its iterator in the given context');
- assert.strictEqual(value, 3, 'passes its iterator the value');
- assert.strictEqual(index, 0, 'passes its iterator the index');
- assert.strictEqual(array, list, 'passes its iterator the entire array');
- }, context);
-
- });
-
- QUnit.test('unique', function(assert) {
- assert.strictEqual(_.unique, _.uniq, 'is an alias for uniq');
- });
-
- QUnit.test('intersection', function(assert) {
- var stooges = ['moe', 'curly', 'larry'], leaders = ['moe', 'groucho'];
- assert.deepEqual(_.intersection(stooges, leaders), ['moe'], 'can find the set intersection of two arrays');
- assert.deepEqual(_(stooges).intersection(leaders), ['moe'], 'can perform an OO-style intersection');
- var result = (function(){ return _.intersection(arguments, leaders); }('moe', 'curly', 'larry'));
- assert.deepEqual(result, ['moe'], 'works on an arguments object');
- var theSixStooges = ['moe', 'moe', 'curly', 'curly', 'larry', 'larry'];
- assert.deepEqual(_.intersection(theSixStooges, leaders), ['moe'], 'returns a duplicate-free array');
- result = _.intersection([2, 4, 3, 1], [1, 2, 3]);
- assert.deepEqual(result, [2, 3, 1], 'preserves the order of the first array');
- result = _.intersection(null, [1, 2, 3]);
- assert.deepEqual(result, [], 'returns an empty array when passed null as the first argument');
- result = _.intersection([1, 2, 3], null);
- assert.deepEqual(result, [], 'returns an empty array when passed null as an argument beyond the first');
- });
-
- QUnit.test('union', function(assert) {
- var result = _.union([1, 2, 3], [2, 30, 1], [1, 40]);
- assert.deepEqual(result, [1, 2, 3, 30, 40], 'can find the union of a list of arrays');
-
- result = _([1, 2, 3]).union([2, 30, 1], [1, 40]);
- assert.deepEqual(result, [1, 2, 3, 30, 40], 'can perform an OO-style union');
-
- result = _.union([1, 2, 3], [2, 30, 1], [1, 40, [1]]);
- assert.deepEqual(result, [1, 2, 3, 30, 40, [1]], 'can find the union of a list of nested arrays');
-
- result = _.union([10, 20], [1, 30, 10], [0, 40]);
- assert.deepEqual(result, [10, 20, 1, 30, 0, 40], 'orders values by their first encounter');
-
- result = (function(){ return _.union(arguments, [2, 30, 1], [1, 40]); }(1, 2, 3));
- assert.deepEqual(result, [1, 2, 3, 30, 40], 'works on an arguments object');
-
- assert.deepEqual(_.union([1, 2, 3], 4), [1, 2, 3], 'restricts the union to arrays only');
- });
-
- QUnit.test('difference', function(assert) {
- var result = _.difference([1, 2, 3], [2, 30, 40]);
- assert.deepEqual(result, [1, 3], 'can find the difference of two arrays');
-
- result = _([1, 2, 3]).difference([2, 30, 40]);
- assert.deepEqual(result, [1, 3], 'can perform an OO-style difference');
-
- result = _.difference([1, 2, 3, 4], [2, 30, 40], [1, 11, 111]);
- assert.deepEqual(result, [3, 4], 'can find the difference of three arrays');
-
- result = _.difference([8, 9, 3, 1], [3, 8]);
- assert.deepEqual(result, [9, 1], 'preserves the order of the first array');
-
- result = (function(){ return _.difference(arguments, [2, 30, 40]); }(1, 2, 3));
- assert.deepEqual(result, [1, 3], 'works on an arguments object');
-
- result = _.difference([1, 2, 3], 1);
- assert.deepEqual(result, [1, 2, 3], 'restrict the difference to arrays only');
- });
-
- QUnit.test('zip', function(assert) {
- var names = ['moe', 'larry', 'curly'], ages = [30, 40, 50], leaders = [true];
- assert.deepEqual(_.zip(names, ages, leaders), [
- ['moe', 30, true],
- ['larry', 40, void 0],
- ['curly', 50, void 0]
- ], 'zipped together arrays of different lengths');
-
- var stooges = _.zip(['moe', 30, 'stooge 1'], ['larry', 40, 'stooge 2'], ['curly', 50, 'stooge 3']);
- assert.deepEqual(stooges, [['moe', 'larry', 'curly'], [30, 40, 50], ['stooge 1', 'stooge 2', 'stooge 3']], 'zipped pairs');
-
- // In the case of different lengths of the tuples, undefined values
- // should be used as placeholder
- stooges = _.zip(['moe', 30], ['larry', 40], ['curly', 50, 'extra data']);
- assert.deepEqual(stooges, [['moe', 'larry', 'curly'], [30, 40, 50], [void 0, void 0, 'extra data']], 'zipped pairs with empties');
-
- var empty = _.zip([]);
- assert.deepEqual(empty, [], 'unzipped empty');
-
- assert.deepEqual(_.zip(null), [], 'handles null');
- assert.deepEqual(_.zip(), [], '_.zip() returns []');
- });
-
- QUnit.test('unzip', function(assert) {
- assert.deepEqual(_.unzip(null), [], 'handles null');
-
- assert.deepEqual(_.unzip([['a', 'b'], [1, 2]]), [['a', 1], ['b', 2]]);
-
- // complements zip
- var zipped = _.zip(['fred', 'barney'], [30, 40], [true, false]);
- assert.deepEqual(_.unzip(zipped), [['fred', 'barney'], [30, 40], [true, false]]);
-
- zipped = _.zip(['moe', 30], ['larry', 40], ['curly', 50, 'extra data']);
- assert.deepEqual(_.unzip(zipped), [['moe', 30, void 0], ['larry', 40, void 0], ['curly', 50, 'extra data']], 'Uses length of largest array');
- });
-
- QUnit.test('object', function(assert) {
- var result = _.object(['moe', 'larry', 'curly'], [30, 40, 50]);
- var shouldBe = {moe: 30, larry: 40, curly: 50};
- assert.deepEqual(result, shouldBe, 'two arrays zipped together into an object');
-
- result = _.object([['one', 1], ['two', 2], ['three', 3]]);
- shouldBe = {one: 1, two: 2, three: 3};
- assert.deepEqual(result, shouldBe, 'an array of pairs zipped together into an object');
-
- var stooges = {moe: 30, larry: 40, curly: 50};
- assert.deepEqual(_.object(_.pairs(stooges)), stooges, 'an object converted to pairs and back to an object');
-
- assert.deepEqual(_.object(null), {}, 'handles nulls');
- });
-
- QUnit.test('indexOf', function(assert) {
- var numbers = [1, 2, 3];
- assert.equal(_.indexOf(numbers, 2), 1, 'can compute indexOf');
- var result = (function(){ return _.indexOf(arguments, 2); }(1, 2, 3));
- assert.equal(result, 1, 'works on an arguments object');
-
- _.each([null, void 0, [], false], function(val) {
- var msg = 'Handles: ' + (_.isArray(val) ? '[]' : val);
- assert.equal(_.indexOf(val, 2), -1, msg);
- assert.equal(_.indexOf(val, 2, -1), -1, msg);
- assert.equal(_.indexOf(val, 2, -20), -1, msg);
- assert.equal(_.indexOf(val, 2, 15), -1, msg);
- });
-
- var num = 35;
- numbers = [10, 20, 30, 40, 50];
- var index = _.indexOf(numbers, num, true);
- assert.equal(index, -1, '35 is not in the list');
-
- numbers = [10, 20, 30, 40, 50]; num = 40;
- index = _.indexOf(numbers, num, true);
- assert.equal(index, 3, '40 is in the list');
-
- numbers = [1, 40, 40, 40, 40, 40, 40, 40, 50, 60, 70]; num = 40;
- assert.equal(_.indexOf(numbers, num, true), 1, '40 is in the list');
- assert.equal(_.indexOf(numbers, 6, true), -1, '6 isnt in the list');
- assert.equal(_.indexOf([1, 2, 5, 4, 6, 7], 5, true), -1, 'sorted indexOf doesn\'t uses binary search');
- assert.ok(_.every(['1', [], {}, null], function() {
- return _.indexOf(numbers, num, {}) === 1;
- }), 'non-nums as fromIndex make indexOf assume sorted');
-
- numbers = [1, 2, 3, 1, 2, 3, 1, 2, 3];
- index = _.indexOf(numbers, 2, 5);
- assert.equal(index, 7, 'supports the fromIndex argument');
-
- index = _.indexOf([,,, 0], void 0);
- assert.equal(index, 0, 'treats sparse arrays as if they were dense');
-
- var array = [1, 2, 3, 1, 2, 3];
- assert.strictEqual(_.indexOf(array, 1, -3), 3, 'neg `fromIndex` starts at the right index');
- assert.strictEqual(_.indexOf(array, 1, -2), -1, 'neg `fromIndex` starts at the right index');
- assert.strictEqual(_.indexOf(array, 2, -3), 4);
- _.each([-6, -8, -Infinity], function(fromIndex) {
- assert.strictEqual(_.indexOf(array, 1, fromIndex), 0);
- });
- assert.strictEqual(_.indexOf([1, 2, 3], 1, true), 0);
-
- index = _.indexOf([], void 0, true);
- assert.equal(index, -1, 'empty array with truthy `isSorted` returns -1');
- });
-
- QUnit.test('indexOf with NaN', function(assert) {
- assert.strictEqual(_.indexOf([1, 2, NaN, NaN], NaN), 2, 'Expected [1, 2, NaN] to contain NaN');
- assert.strictEqual(_.indexOf([1, 2, Infinity], NaN), -1, 'Expected [1, 2, NaN] to contain NaN');
-
- assert.strictEqual(_.indexOf([1, 2, NaN, NaN], NaN, 1), 2, 'startIndex does not affect result');
- assert.strictEqual(_.indexOf([1, 2, NaN, NaN], NaN, -2), 2, 'startIndex does not affect result');
-
- (function() {
- assert.strictEqual(_.indexOf(arguments, NaN), 2, 'Expected arguments [1, 2, NaN] to contain NaN');
- }(1, 2, NaN, NaN));
- });
-
- QUnit.test('indexOf with +- 0', function(assert) {
- _.each([-0, +0], function(val) {
- assert.strictEqual(_.indexOf([1, 2, val, val], val), 2);
- assert.strictEqual(_.indexOf([1, 2, val, val], -val), 2);
- });
- });
-
- QUnit.test('lastIndexOf', function(assert) {
- var numbers = [1, 0, 1];
- var falsey = [void 0, '', 0, false, NaN, null, void 0];
- assert.equal(_.lastIndexOf(numbers, 1), 2);
-
- numbers = [1, 0, 1, 0, 0, 1, 0, 0, 0];
- numbers.lastIndexOf = null;
- assert.equal(_.lastIndexOf(numbers, 1), 5, 'can compute lastIndexOf, even without the native function');
- assert.equal(_.lastIndexOf(numbers, 0), 8, 'lastIndexOf the other element');
- var result = (function(){ return _.lastIndexOf(arguments, 1); }(1, 0, 1, 0, 0, 1, 0, 0, 0));
- assert.equal(result, 5, 'works on an arguments object');
-
- _.each([null, void 0, [], false], function(val) {
- var msg = 'Handles: ' + (_.isArray(val) ? '[]' : val);
- assert.equal(_.lastIndexOf(val, 2), -1, msg);
- assert.equal(_.lastIndexOf(val, 2, -1), -1, msg);
- assert.equal(_.lastIndexOf(val, 2, -20), -1, msg);
- assert.equal(_.lastIndexOf(val, 2, 15), -1, msg);
- });
-
- numbers = [1, 2, 3, 1, 2, 3, 1, 2, 3];
- var index = _.lastIndexOf(numbers, 2, 2);
- assert.equal(index, 1, 'supports the fromIndex argument');
-
- var array = [1, 2, 3, 1, 2, 3];
-
- assert.strictEqual(_.lastIndexOf(array, 1, 0), 0, 'starts at the correct from idx');
- assert.strictEqual(_.lastIndexOf(array, 3), 5, 'should return the index of the last matched value');
- assert.strictEqual(_.lastIndexOf(array, 4), -1, 'should return `-1` for an unmatched value');
-
- assert.strictEqual(_.lastIndexOf(array, 1, 2), 0, 'should work with a positive `fromIndex`');
-
- _.each([6, 8, Math.pow(2, 32), Infinity], function(fromIndex) {
- assert.strictEqual(_.lastIndexOf(array, void 0, fromIndex), -1);
- assert.strictEqual(_.lastIndexOf(array, 1, fromIndex), 3);
- assert.strictEqual(_.lastIndexOf(array, '', fromIndex), -1);
- });
-
- var expected = _.map(falsey, function(value) {
- return typeof value == 'number' ? -1 : 5;
- });
-
- var actual = _.map(falsey, function(fromIndex) {
- return _.lastIndexOf(array, 3, fromIndex);
- });
-
- assert.deepEqual(actual, expected, 'should treat falsey `fromIndex` values, except `0` and `NaN`, as `array.length`');
- assert.strictEqual(_.lastIndexOf(array, 3, '1'), 5, 'should treat non-number `fromIndex` values as `array.length`');
- assert.strictEqual(_.lastIndexOf(array, 3, true), 5, 'should treat non-number `fromIndex` values as `array.length`');
-
- assert.strictEqual(_.lastIndexOf(array, 2, -3), 1, 'should work with a negative `fromIndex`');
- assert.strictEqual(_.lastIndexOf(array, 1, -3), 3, 'neg `fromIndex` starts at the right index');
-
- assert.deepEqual(_.map([-6, -8, -Infinity], function(fromIndex) {
- return _.lastIndexOf(array, 1, fromIndex);
- }), [0, -1, -1]);
- });
-
- QUnit.test('lastIndexOf with NaN', function(assert) {
- assert.strictEqual(_.lastIndexOf([1, 2, NaN, NaN], NaN), 3, 'Expected [1, 2, NaN] to contain NaN');
- assert.strictEqual(_.lastIndexOf([1, 2, Infinity], NaN), -1, 'Expected [1, 2, NaN] to contain NaN');
-
- assert.strictEqual(_.lastIndexOf([1, 2, NaN, NaN], NaN, 2), 2, 'fromIndex does not affect result');
- assert.strictEqual(_.lastIndexOf([1, 2, NaN, NaN], NaN, -2), 2, 'fromIndex does not affect result');
-
- (function() {
- assert.strictEqual(_.lastIndexOf(arguments, NaN), 3, 'Expected arguments [1, 2, NaN] to contain NaN');
- }(1, 2, NaN, NaN));
- });
-
- QUnit.test('lastIndexOf with +- 0', function(assert) {
- _.each([-0, +0], function(val) {
- assert.strictEqual(_.lastIndexOf([1, 2, val, val], val), 3);
- assert.strictEqual(_.lastIndexOf([1, 2, val, val], -val), 3);
- assert.strictEqual(_.lastIndexOf([-1, 1, 2], -val), -1);
- });
- });
-
- QUnit.test('findIndex', function(assert) {
- var objects = [
- {a: 0, b: 0},
- {a: 1, b: 1},
- {a: 2, b: 2},
- {a: 0, b: 0}
- ];
-
- assert.equal(_.findIndex(objects, function(obj) {
- return obj.a === 0;
- }), 0);
-
- assert.equal(_.findIndex(objects, function(obj) {
- return obj.b * obj.a === 4;
- }), 2);
-
- assert.equal(_.findIndex(objects, 'a'), 1, 'Uses lookupIterator');
-
- assert.equal(_.findIndex(objects, function(obj) {
- return obj.b * obj.a === 5;
- }), -1);
-
- assert.equal(_.findIndex(null, _.noop), -1);
- assert.strictEqual(_.findIndex(objects, function(a) {
- return a.foo === null;
- }), -1);
- _.findIndex([{a: 1}], function(a, key, obj) {
- assert.equal(key, 0);
- assert.deepEqual(obj, [{a: 1}]);
- assert.strictEqual(this, objects, 'called with context');
- }, objects);
-
- var sparse = [];
- sparse[20] = {a: 2, b: 2};
- assert.equal(_.findIndex(sparse, function(obj) {
- return obj && obj.b * obj.a === 4;
- }), 20, 'Works with sparse arrays');
-
- var array = [1, 2, 3, 4];
- array.match = 55;
- assert.strictEqual(_.findIndex(array, function(x) { return x === 55; }), -1, 'doesn\'t match array-likes keys');
- });
-
- QUnit.test('findLastIndex', function(assert) {
- var objects = [
- {a: 0, b: 0},
- {a: 1, b: 1},
- {a: 2, b: 2},
- {a: 0, b: 0}
- ];
-
- assert.equal(_.findLastIndex(objects, function(obj) {
- return obj.a === 0;
- }), 3);
-
- assert.equal(_.findLastIndex(objects, function(obj) {
- return obj.b * obj.a === 4;
- }), 2);
-
- assert.equal(_.findLastIndex(objects, 'a'), 2, 'Uses lookupIterator');
-
- assert.equal(_.findLastIndex(objects, function(obj) {
- return obj.b * obj.a === 5;
- }), -1);
-
- assert.equal(_.findLastIndex(null, _.noop), -1);
- assert.strictEqual(_.findLastIndex(objects, function(a) {
- return a.foo === null;
- }), -1);
- _.findLastIndex([{a: 1}], function(a, key, obj) {
- assert.equal(key, 0);
- assert.deepEqual(obj, [{a: 1}]);
- assert.strictEqual(this, objects, 'called with context');
- }, objects);
-
- var sparse = [];
- sparse[20] = {a: 2, b: 2};
- assert.equal(_.findLastIndex(sparse, function(obj) {
- return obj && obj.b * obj.a === 4;
- }), 20, 'Works with sparse arrays');
-
- var array = [1, 2, 3, 4];
- array.match = 55;
- assert.strictEqual(_.findLastIndex(array, function(x) { return x === 55; }), -1, 'doesn\'t match array-likes keys');
- });
-
- QUnit.test('range', function(assert) {
- assert.deepEqual(_.range(0), [], 'range with 0 as a first argument generates an empty array');
- assert.deepEqual(_.range(4), [0, 1, 2, 3], 'range with a single positive argument generates an array of elements 0,1,2,...,n-1');
- assert.deepEqual(_.range(5, 8), [5, 6, 7], 'range with two arguments a &amp; b, a&lt;b generates an array of elements a,a+1,a+2,...,b-2,b-1');
- assert.deepEqual(_.range(3, 10, 3), [3, 6, 9], 'range with three arguments a &amp; b &amp; c, c &lt; b-a, a &lt; b generates an array of elements a,a+c,a+2c,...,b - (multiplier of a) &lt; c');
- assert.deepEqual(_.range(3, 10, 15), [3], 'range with three arguments a &amp; b &amp; c, c &gt; b-a, a &lt; b generates an array with a single element, equal to a');
- assert.deepEqual(_.range(12, 7, -2), [12, 10, 8], 'range with three arguments a &amp; b &amp; c, a &gt; b, c &lt; 0 generates an array of elements a,a-c,a-2c and ends with the number not less than b');
- assert.deepEqual(_.range(0, -10, -1), [0, -1, -2, -3, -4, -5, -6, -7, -8, -9], 'final example in the Python docs');
- assert.strictEqual(1 / _.range(-0, 1)[0], -Infinity, 'should preserve -0');
- assert.deepEqual(_.range(8, 5), [8, 7, 6], 'negative range generates descending array');
- assert.deepEqual(_.range(-3), [0, -1, -2], 'negative range generates descending array');
- });
-
- QUnit.test('chunk', function(assert) {
- assert.deepEqual(_.chunk([], 2), [], 'chunk for empty array returns an empty array');
-
- assert.deepEqual(_.chunk([1, 2, 3], 0), [], 'chunk into parts of 0 elements returns empty array');
- assert.deepEqual(_.chunk([1, 2, 3], -1), [], 'chunk into parts of negative amount of elements returns an empty array');
- assert.deepEqual(_.chunk([1, 2, 3]), [], 'defaults to empty array (chunk size 0)');
-
- assert.deepEqual(_.chunk([1, 2, 3], 1), [[1], [2], [3]], 'chunk into parts of 1 elements returns original array');
-
- assert.deepEqual(_.chunk([1, 2, 3], 3), [[1, 2, 3]], 'chunk into parts of current array length elements returns the original array');
- assert.deepEqual(_.chunk([1, 2, 3], 5), [[1, 2, 3]], 'chunk into parts of more then current array length elements returns the original array');
-
- assert.deepEqual(_.chunk([10, 20, 30, 40, 50, 60, 70], 2), [[10, 20], [30, 40], [50, 60], [70]], 'chunk into parts of less then current array length elements');
- assert.deepEqual(_.chunk([10, 20, 30, 40, 50, 60, 70], 3), [[10, 20, 30], [40, 50, 60], [70]], 'chunk into parts of less then current array length elements');
- });
-}());
diff --git a/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/chaining.js b/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/chaining.js
deleted file mode 100644
index 6ad21dcf..00000000
--- a/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/chaining.js
+++ /dev/null
@@ -1,99 +0,0 @@
-(function() {
- var _ = typeof require == 'function' ? require('..') : window._;
-
- QUnit.module('Chaining');
-
- QUnit.test('map/flatten/reduce', function(assert) {
- var lyrics = [
- 'I\'m a lumberjack and I\'m okay',
- 'I sleep all night and I work all day',
- 'He\'s a lumberjack and he\'s okay',
- 'He sleeps all night and he works all day'
- ];
- var counts = _(lyrics).chain()
- .map(function(line) { return line.split(''); })
- .flatten()
- .reduce(function(hash, l) {
- hash[l] = hash[l] || 0;
- hash[l]++;
- return hash;
- }, {})
- .value();
- assert.equal(counts.a, 16, 'counted all the letters in the song');
- assert.equal(counts.e, 10, 'counted all the letters in the song');
- });
-
- QUnit.test('select/reject/sortBy', function(assert) {
- var numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
- numbers = _(numbers).chain().select(function(n) {
- return n % 2 === 0;
- }).reject(function(n) {
- return n % 4 === 0;
- }).sortBy(function(n) {
- return -n;
- }).value();
- assert.deepEqual(numbers, [10, 6, 2], 'filtered and reversed the numbers');
- });
-
- QUnit.test('select/reject/sortBy in functional style', function(assert) {
- var numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
- numbers = _.chain(numbers).select(function(n) {
- return n % 2 === 0;
- }).reject(function(n) {
- return n % 4 === 0;
- }).sortBy(function(n) {
- return -n;
- }).value();
- assert.deepEqual(numbers, [10, 6, 2], 'filtered and reversed the numbers');
- });
-
- QUnit.test('reverse/concat/unshift/pop/map', function(assert) {
- var numbers = [1, 2, 3, 4, 5];
- numbers = _(numbers).chain()
- .reverse()
- .concat([5, 5, 5])
- .unshift(17)
- .pop()
- .map(function(n){ return n * 2; })
- .value();
- assert.deepEqual(numbers, [34, 10, 8, 6, 4, 2, 10, 10], 'can chain together array functions.');
- });
-
- QUnit.test('splice', function(assert) {
- var instance = _([1, 2, 3, 4, 5]).chain();
- assert.deepEqual(instance.splice(1, 3).value(), [1, 5]);
- assert.deepEqual(instance.splice(1, 0).value(), [1, 5]);
- assert.deepEqual(instance.splice(1, 1).value(), [1]);
- assert.deepEqual(instance.splice(0, 1).value(), [], '#397 Can create empty array');
- });
-
- QUnit.test('shift', function(assert) {
- var instance = _([1, 2, 3]).chain();
- assert.deepEqual(instance.shift().value(), [2, 3]);
- assert.deepEqual(instance.shift().value(), [3]);
- assert.deepEqual(instance.shift().value(), [], '#397 Can create empty array');
- });
-
- QUnit.test('pop', function(assert) {
- var instance = _([1, 2, 3]).chain();
- assert.deepEqual(instance.pop().value(), [1, 2]);
- assert.deepEqual(instance.pop().value(), [1]);
- assert.deepEqual(instance.pop().value(), [], '#397 Can create empty array');
- });
-
- QUnit.test('chaining works in small stages', function(assert) {
- var o = _([1, 2, 3, 4]).chain();
- assert.deepEqual(o.filter(function(i) { return i < 3; }).value(), [1, 2]);
- assert.deepEqual(o.filter(function(i) { return i > 2; }).value(), [3, 4]);
- });
-
- QUnit.test('#1562: Engine proxies for chained functions', function(assert) {
- var wrapped = _(512);
- assert.strictEqual(wrapped.toJSON(), 512);
- assert.strictEqual(wrapped.valueOf(), 512);
- assert.strictEqual(+wrapped, 512);
- assert.strictEqual(wrapped.toString(), '512');
- assert.strictEqual('' + wrapped, '512');
- });
-
-}());
diff --git a/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/collections.js b/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/collections.js
deleted file mode 100644
index 182f7a21..00000000
--- a/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/collections.js
+++ /dev/null
@@ -1,896 +0,0 @@
-(function() {
- var _ = typeof require == 'function' ? require('..') : window._;
-
- QUnit.module('Collections');
-
- QUnit.test('each', function(assert) {
- _.each([1, 2, 3], function(num, i) {
- assert.equal(num, i + 1, 'each iterators provide value and iteration count');
- });
-
- var answers = [];
- _.each([1, 2, 3], function(num){ answers.push(num * this.multiplier); }, {multiplier: 5});
- assert.deepEqual(answers, [5, 10, 15], 'context object property accessed');
-
- answers = [];
- _.each([1, 2, 3], function(num){ answers.push(num); });
- assert.deepEqual(answers, [1, 2, 3], 'can iterate a simple array');
-
- answers = [];
- var obj = {one: 1, two: 2, three: 3};
- obj.constructor.prototype.four = 4;
- _.each(obj, function(value, key){ answers.push(key); });
- assert.deepEqual(answers, ['one', 'two', 'three'], 'iterating over objects works, and ignores the object prototype.');
- delete obj.constructor.prototype.four;
-
- // ensure the each function is JITed
- _(1000).times(function() { _.each([], function(){}); });
- var count = 0;
- obj = {1: 'foo', 2: 'bar', 3: 'baz'};
- _.each(obj, function(){ count++; });
- assert.equal(count, 3, 'the fun should be called only 3 times');
-
- var answer = null;
- _.each([1, 2, 3], function(num, index, arr){ if (_.include(arr, num)) answer = true; });
- assert.ok(answer, 'can reference the original collection from inside the iterator');
-
- answers = 0;
- _.each(null, function(){ ++answers; });
- assert.equal(answers, 0, 'handles a null properly');
-
- _.each(false, function(){});
-
- var a = [1, 2, 3];
- assert.strictEqual(_.each(a, function(){}), a);
- assert.strictEqual(_.each(null, function(){}), null);
- });
-
- QUnit.test('forEach', function(assert) {
- assert.strictEqual(_.forEach, _.each, 'is an alias for each');
- });
-
- QUnit.test('lookupIterator with contexts', function(assert) {
- _.each([true, false, 'yes', '', 0, 1, {}], function(context) {
- _.each([1], function() {
- assert.equal(this, context);
- }, context);
- });
- });
-
- QUnit.test('Iterating objects with sketchy length properties', function(assert) {
- var functions = [
- 'each', 'map', 'filter', 'find',
- 'some', 'every', 'max', 'min',
- 'groupBy', 'countBy', 'partition', 'indexBy'
- ];
- var reducers = ['reduce', 'reduceRight'];
-
- var tricks = [
- {length: '5'},
- {length: {valueOf: _.constant(5)}},
- {length: Math.pow(2, 53) + 1},
- {length: Math.pow(2, 53)},
- {length: null},
- {length: -2},
- {length: new Number(15)}
- ];
-
- assert.expect(tricks.length * (functions.length + reducers.length + 4));
-
- _.each(tricks, function(trick) {
- var length = trick.length;
- assert.strictEqual(_.size(trick), 1, 'size on obj with length: ' + length);
- assert.deepEqual(_.toArray(trick), [length], 'toArray on obj with length: ' + length);
- assert.deepEqual(_.shuffle(trick), [length], 'shuffle on obj with length: ' + length);
- assert.deepEqual(_.sample(trick), length, 'sample on obj with length: ' + length);
-
-
- _.each(functions, function(method) {
- _[method](trick, function(val, key) {
- assert.strictEqual(key, 'length', method + ': ran with length = ' + val);
- });
- });
-
- _.each(reducers, function(method) {
- assert.strictEqual(_[method](trick), trick.length, method);
- });
- });
- });
-
- QUnit.test('Resistant to collection length and properties changing while iterating', function(assert) {
-
- var collection = [
- 'each', 'map', 'filter', 'find',
- 'some', 'every', 'max', 'min', 'reject',
- 'groupBy', 'countBy', 'partition', 'indexBy',
- 'reduce', 'reduceRight'
- ];
- var array = [
- 'findIndex', 'findLastIndex'
- ];
- var object = [
- 'mapObject', 'findKey', 'pick', 'omit'
- ];
-
- _.each(collection.concat(array), function(method) {
- var sparseArray = [1, 2, 3];
- sparseArray.length = 100;
- var answers = 0;
- _[method](sparseArray, function(){
- ++answers;
- return method === 'every' ? true : null;
- }, {});
- assert.equal(answers, 100, method + ' enumerates [0, length)');
-
- var growingCollection = [1, 2, 3], count = 0;
- _[method](growingCollection, function() {
- if (count < 10) growingCollection.push(count++);
- return method === 'every' ? true : null;
- }, {});
- assert.equal(count, 3, method + ' is resistant to length changes');
- });
-
- _.each(collection.concat(object), function(method) {
- var changingObject = {0: 0, 1: 1}, count = 0;
- _[method](changingObject, function(val) {
- if (count < 10) changingObject[++count] = val + 1;
- return method === 'every' ? true : null;
- }, {});
-
- assert.equal(count, 2, method + ' is resistant to property changes');
- });
- });
-
- QUnit.test('map', function(assert) {
- var doubled = _.map([1, 2, 3], function(num){ return num * 2; });
- assert.deepEqual(doubled, [2, 4, 6], 'doubled numbers');
-
- var tripled = _.map([1, 2, 3], function(num){ return num * this.multiplier; }, {multiplier: 3});
- assert.deepEqual(tripled, [3, 6, 9], 'tripled numbers with context');
-
- doubled = _([1, 2, 3]).map(function(num){ return num * 2; });
- assert.deepEqual(doubled, [2, 4, 6], 'OO-style doubled numbers');
-
- var ids = _.map({length: 2, 0: {id: '1'}, 1: {id: '2'}}, function(n){
- return n.id;
- });
- assert.deepEqual(ids, ['1', '2'], 'Can use collection methods on Array-likes.');
-
- assert.deepEqual(_.map(null, _.noop), [], 'handles a null properly');
-
- assert.deepEqual(_.map([1], function() {
- return this.length;
- }, [5]), [1], 'called with context');
-
- // Passing a property name like _.pluck.
- var people = [{name: 'moe', age: 30}, {name: 'curly', age: 50}];
- assert.deepEqual(_.map(people, 'name'), ['moe', 'curly'], 'predicate string map to object properties');
- });
-
- QUnit.test('collect', function(assert) {
- assert.strictEqual(_.collect, _.map, 'is an alias for map');
- });
-
- QUnit.test('reduce', function(assert) {
- var sum = _.reduce([1, 2, 3], function(memo, num){ return memo + num; }, 0);
- assert.equal(sum, 6, 'can sum up an array');
-
- var context = {multiplier: 3};
- sum = _.reduce([1, 2, 3], function(memo, num){ return memo + num * this.multiplier; }, 0, context);
- assert.equal(sum, 18, 'can reduce with a context object');
-
- sum = _([1, 2, 3]).reduce(function(memo, num){ return memo + num; }, 0);
- assert.equal(sum, 6, 'OO-style reduce');
-
- sum = _.reduce([1, 2, 3], function(memo, num){ return memo + num; });
- assert.equal(sum, 6, 'default initial value');
-
- var prod = _.reduce([1, 2, 3, 4], function(memo, num){ return memo * num; });
- assert.equal(prod, 24, 'can reduce via multiplication');
-
- assert.ok(_.reduce(null, _.noop, 138) === 138, 'handles a null (with initial value) properly');
- assert.equal(_.reduce([], _.noop, void 0), void 0, 'undefined can be passed as a special case');
- assert.equal(_.reduce([_], _.noop), _, 'collection of length one with no initial value returns the first item');
- assert.equal(_.reduce([], _.noop), void 0, 'returns undefined when collection is empty and no initial value');
- });
-
- QUnit.test('foldl', function(assert) {
- assert.strictEqual(_.foldl, _.reduce, 'is an alias for reduce');
- });
-
- QUnit.test('inject', function(assert) {
- assert.strictEqual(_.inject, _.reduce, 'is an alias for reduce');
- });
-
- QUnit.test('reduceRight', function(assert) {
- var list = _.reduceRight(['foo', 'bar', 'baz'], function(memo, str){ return memo + str; }, '');
- assert.equal(list, 'bazbarfoo', 'can perform right folds');
-
- list = _.reduceRight(['foo', 'bar', 'baz'], function(memo, str){ return memo + str; });
- assert.equal(list, 'bazbarfoo', 'default initial value');
-
- var sum = _.reduceRight({a: 1, b: 2, c: 3}, function(memo, num){ return memo + num; });
- assert.equal(sum, 6, 'default initial value on object');
-
- assert.ok(_.reduceRight(null, _.noop, 138) === 138, 'handles a null (with initial value) properly');
- assert.equal(_.reduceRight([_], _.noop), _, 'collection of length one with no initial value returns the first item');
-
- assert.equal(_.reduceRight([], _.noop, void 0), void 0, 'undefined can be passed as a special case');
- assert.equal(_.reduceRight([], _.noop), void 0, 'returns undefined when collection is empty and no initial value');
-
- // Assert that the correct arguments are being passed.
-
- var args,
- init = {},
- object = {a: 1, b: 2},
- lastKey = _.keys(object).pop();
-
- var expected = lastKey === 'a'
- ? [init, 1, 'a', object]
- : [init, 2, 'b', object];
-
- _.reduceRight(object, function() {
- if (!args) args = _.toArray(arguments);
- }, init);
-
- assert.deepEqual(args, expected);
-
- // And again, with numeric keys.
-
- object = {2: 'a', 1: 'b'};
- lastKey = _.keys(object).pop();
- args = null;
-
- expected = lastKey === '2'
- ? [init, 'a', '2', object]
- : [init, 'b', '1', object];
-
- _.reduceRight(object, function() {
- if (!args) args = _.toArray(arguments);
- }, init);
-
- assert.deepEqual(args, expected);
- });
-
- QUnit.test('foldr', function(assert) {
- assert.strictEqual(_.foldr, _.reduceRight, 'is an alias for reduceRight');
- });
-
- QUnit.test('find', function(assert) {
- var array = [1, 2, 3, 4];
- assert.strictEqual(_.find(array, function(n) { return n > 2; }), 3, 'should return first found `value`');
- assert.strictEqual(_.find(array, function() { return false; }), void 0, 'should return `undefined` if `value` is not found');
-
- array.dontmatch = 55;
- assert.strictEqual(_.find(array, function(x) { return x === 55; }), void 0, 'iterates array-likes correctly');
-
- // Matching an object like _.findWhere.
- var list = [{a: 1, b: 2}, {a: 2, b: 2}, {a: 1, b: 3}, {a: 1, b: 4}, {a: 2, b: 4}];
- assert.deepEqual(_.find(list, {a: 1}), {a: 1, b: 2}, 'can be used as findWhere');
- assert.deepEqual(_.find(list, {b: 4}), {a: 1, b: 4});
- assert.ok(!_.find(list, {c: 1}), 'undefined when not found');
- assert.ok(!_.find([], {c: 1}), 'undefined when searching empty list');
-
- var result = _.find([1, 2, 3], function(num){ return num * 2 === 4; });
- assert.equal(result, 2, 'found the first "2" and broke the loop');
-
- var obj = {
- a: {x: 1, z: 3},
- b: {x: 2, z: 2},
- c: {x: 3, z: 4},
- d: {x: 4, z: 1}
- };
-
- assert.deepEqual(_.find(obj, {x: 2}), {x: 2, z: 2}, 'works on objects');
- assert.deepEqual(_.find(obj, {x: 2, z: 1}), void 0);
- assert.deepEqual(_.find(obj, function(x) {
- return x.x === 4;
- }), {x: 4, z: 1});
-
- _.findIndex([{a: 1}], function(a, key, o) {
- assert.equal(key, 0);
- assert.deepEqual(o, [{a: 1}]);
- assert.strictEqual(this, _, 'called with context');
- }, _);
- });
-
- QUnit.test('detect', function(assert) {
- assert.strictEqual(_.detect, _.find, 'is an alias for find');
- });
-
- QUnit.test('filter', function(assert) {
- var evenArray = [1, 2, 3, 4, 5, 6];
- var evenObject = {one: 1, two: 2, three: 3};
- var isEven = function(num){ return num % 2 === 0; };
-
- assert.deepEqual(_.filter(evenArray, isEven), [2, 4, 6]);
- assert.deepEqual(_.filter(evenObject, isEven), [2], 'can filter objects');
- assert.deepEqual(_.filter([{}, evenObject, []], 'two'), [evenObject], 'predicate string map to object properties');
-
- _.filter([1], function() {
- assert.equal(this, evenObject, 'given context');
- }, evenObject);
-
- // Can be used like _.where.
- var list = [{a: 1, b: 2}, {a: 2, b: 2}, {a: 1, b: 3}, {a: 1, b: 4}];
- assert.deepEqual(_.filter(list, {a: 1}), [{a: 1, b: 2}, {a: 1, b: 3}, {a: 1, b: 4}]);
- assert.deepEqual(_.filter(list, {b: 2}), [{a: 1, b: 2}, {a: 2, b: 2}]);
- assert.deepEqual(_.filter(list, {}), list, 'Empty object accepts all items');
- assert.deepEqual(_(list).filter({}), list, 'OO-filter');
- });
-
- QUnit.test('select', function(assert) {
- assert.strictEqual(_.select, _.filter, 'is an alias for filter');
- });
-
- QUnit.test('reject', function(assert) {
- var odds = _.reject([1, 2, 3, 4, 5, 6], function(num){ return num % 2 === 0; });
- assert.deepEqual(odds, [1, 3, 5], 'rejected each even number');
-
- var context = 'obj';
-
- var evens = _.reject([1, 2, 3, 4, 5, 6], function(num){
- assert.equal(context, 'obj');
- return num % 2 !== 0;
- }, context);
- assert.deepEqual(evens, [2, 4, 6], 'rejected each odd number');
-
- assert.deepEqual(_.reject([odds, {one: 1, two: 2, three: 3}], 'two'), [odds], 'predicate string map to object properties');
-
- // Can be used like _.where.
- var list = [{a: 1, b: 2}, {a: 2, b: 2}, {a: 1, b: 3}, {a: 1, b: 4}];
- assert.deepEqual(_.reject(list, {a: 1}), [{a: 2, b: 2}]);
- assert.deepEqual(_.reject(list, {b: 2}), [{a: 1, b: 3}, {a: 1, b: 4}]);
- assert.deepEqual(_.reject(list, {}), [], 'Returns empty list given empty object');
- assert.deepEqual(_.reject(list, []), [], 'Returns empty list given empty array');
- });
-
- QUnit.test('every', function(assert) {
- assert.ok(_.every([], _.identity), 'the empty set');
- assert.ok(_.every([true, true, true], _.identity), 'every true values');
- assert.ok(!_.every([true, false, true], _.identity), 'one false value');
- assert.ok(_.every([0, 10, 28], function(num){ return num % 2 === 0; }), 'even numbers');
- assert.ok(!_.every([0, 11, 28], function(num){ return num % 2 === 0; }), 'an odd number');
- assert.ok(_.every([1], _.identity) === true, 'cast to boolean - true');
- assert.ok(_.every([0], _.identity) === false, 'cast to boolean - false');
- assert.ok(!_.every([void 0, void 0, void 0], _.identity), 'works with arrays of undefined');
-
- var list = [{a: 1, b: 2}, {a: 2, b: 2}, {a: 1, b: 3}, {a: 1, b: 4}];
- assert.ok(!_.every(list, {a: 1, b: 2}), 'Can be called with object');
- assert.ok(_.every(list, 'a'), 'String mapped to object property');
-
- list = [{a: 1, b: 2}, {a: 2, b: 2, c: true}];
- assert.ok(_.every(list, {b: 2}), 'Can be called with object');
- assert.ok(!_.every(list, 'c'), 'String mapped to object property');
-
- assert.ok(_.every({a: 1, b: 2, c: 3, d: 4}, _.isNumber), 'takes objects');
- assert.ok(!_.every({a: 1, b: 2, c: 3, d: 4}, _.isObject), 'takes objects');
- assert.ok(_.every(['a', 'b', 'c', 'd'], _.hasOwnProperty, {a: 1, b: 2, c: 3, d: 4}), 'context works');
- assert.ok(!_.every(['a', 'b', 'c', 'd', 'f'], _.hasOwnProperty, {a: 1, b: 2, c: 3, d: 4}), 'context works');
- });
-
- QUnit.test('all', function(assert) {
- assert.strictEqual(_.all, _.every, 'is an alias for every');
- });
-
- QUnit.test('some', function(assert) {
- assert.ok(!_.some([]), 'the empty set');
- assert.ok(!_.some([false, false, false]), 'all false values');
- assert.ok(_.some([false, false, true]), 'one true value');
- assert.ok(_.some([null, 0, 'yes', false]), 'a string');
- assert.ok(!_.some([null, 0, '', false]), 'falsy values');
- assert.ok(!_.some([1, 11, 29], function(num){ return num % 2 === 0; }), 'all odd numbers');
- assert.ok(_.some([1, 10, 29], function(num){ return num % 2 === 0; }), 'an even number');
- assert.ok(_.some([1], _.identity) === true, 'cast to boolean - true');
- assert.ok(_.some([0], _.identity) === false, 'cast to boolean - false');
- assert.ok(_.some([false, false, true]));
-
- var list = [{a: 1, b: 2}, {a: 2, b: 2}, {a: 1, b: 3}, {a: 1, b: 4}];
- assert.ok(!_.some(list, {a: 5, b: 2}), 'Can be called with object');
- assert.ok(_.some(list, 'a'), 'String mapped to object property');
-
- list = [{a: 1, b: 2}, {a: 2, b: 2, c: true}];
- assert.ok(_.some(list, {b: 2}), 'Can be called with object');
- assert.ok(!_.some(list, 'd'), 'String mapped to object property');
-
- assert.ok(_.some({a: '1', b: '2', c: '3', d: '4', e: 6}, _.isNumber), 'takes objects');
- assert.ok(!_.some({a: 1, b: 2, c: 3, d: 4}, _.isObject), 'takes objects');
- assert.ok(_.some(['a', 'b', 'c', 'd'], _.hasOwnProperty, {a: 1, b: 2, c: 3, d: 4}), 'context works');
- assert.ok(!_.some(['x', 'y', 'z'], _.hasOwnProperty, {a: 1, b: 2, c: 3, d: 4}), 'context works');
- });
-
- QUnit.test('any', function(assert) {
- assert.strictEqual(_.any, _.some, 'is an alias for some');
- });
-
- QUnit.test('includes', function(assert) {
- _.each([null, void 0, 0, 1, NaN, {}, []], function(val) {
- assert.strictEqual(_.includes(val, 'hasOwnProperty'), false);
- });
- assert.strictEqual(_.includes([1, 2, 3], 2), true, 'two is in the array');
- assert.ok(!_.includes([1, 3, 9], 2), 'two is not in the array');
-
- assert.strictEqual(_.includes([5, 4, 3, 2, 1], 5, true), true, 'doesn\'t delegate to binary search');
-
- assert.ok(_.includes({moe: 1, larry: 3, curly: 9}, 3) === true, '_.includes on objects checks their values');
- assert.ok(_([1, 2, 3]).includes(2), 'OO-style includes');
-
- var numbers = [1, 2, 3, 1, 2, 3, 1, 2, 3];
- assert.strictEqual(_.includes(numbers, 1, 1), true, 'takes a fromIndex');
- assert.strictEqual(_.includes(numbers, 1, -1), false, 'takes a fromIndex');
- assert.strictEqual(_.includes(numbers, 1, -2), false, 'takes a fromIndex');
- assert.strictEqual(_.includes(numbers, 1, -3), true, 'takes a fromIndex');
- assert.strictEqual(_.includes(numbers, 1, 6), true, 'takes a fromIndex');
- assert.strictEqual(_.includes(numbers, 1, 7), false, 'takes a fromIndex');
-
- assert.ok(_.every([1, 2, 3], _.partial(_.includes, numbers)), 'fromIndex is guarded');
- });
-
- QUnit.test('include', function(assert) {
- assert.strictEqual(_.include, _.includes, 'is an alias for includes');
- });
-
- QUnit.test('contains', function(assert) {
- assert.strictEqual(_.contains, _.includes, 'is an alias for includes');
-
- });
-
- QUnit.test('includes with NaN', function(assert) {
- assert.strictEqual(_.includes([1, 2, NaN, NaN], NaN), true, 'Expected [1, 2, NaN] to contain NaN');
- assert.strictEqual(_.includes([1, 2, Infinity], NaN), false, 'Expected [1, 2, NaN] to contain NaN');
- });
-
- QUnit.test('includes with +- 0', function(assert) {
- _.each([-0, +0], function(val) {
- assert.strictEqual(_.includes([1, 2, val, val], val), true);
- assert.strictEqual(_.includes([1, 2, val, val], -val), true);
- assert.strictEqual(_.includes([-1, 1, 2], -val), false);
- });
- });
-
-
- QUnit.test('invoke', function(assert) {
- assert.expect(5);
- var list = [[5, 1, 7], [3, 2, 1]];
- var result = _.invoke(list, 'sort');
- assert.deepEqual(result[0], [1, 5, 7], 'first array sorted');
- assert.deepEqual(result[1], [1, 2, 3], 'second array sorted');
-
- _.invoke([{
- method: function() {
- assert.deepEqual(_.toArray(arguments), [1, 2, 3], 'called with arguments');
- }
- }], 'method', 1, 2, 3);
-
- assert.deepEqual(_.invoke([{a: null}, {}, {a: _.constant(1)}], 'a'), [null, void 0, 1], 'handles null & undefined');
-
- assert.raises(function() {
- _.invoke([{a: 1}], 'a');
- }, TypeError, 'throws for non-functions');
- });
-
- QUnit.test('invoke w/ function reference', function(assert) {
- var list = [[5, 1, 7], [3, 2, 1]];
- var result = _.invoke(list, Array.prototype.sort);
- assert.deepEqual(result[0], [1, 5, 7], 'first array sorted');
- assert.deepEqual(result[1], [1, 2, 3], 'second array sorted');
-
- assert.deepEqual(_.invoke([1, 2, 3], function(a) {
- return a + this;
- }, 5), [6, 7, 8], 'receives params from invoke');
- });
-
- // Relevant when using ClojureScript
- QUnit.test('invoke when strings have a call method', function(assert) {
- String.prototype.call = function() {
- return 42;
- };
- var list = [[5, 1, 7], [3, 2, 1]];
- var s = 'foo';
- assert.equal(s.call(), 42, 'call function exists');
- var result = _.invoke(list, 'sort');
- assert.deepEqual(result[0], [1, 5, 7], 'first array sorted');
- assert.deepEqual(result[1], [1, 2, 3], 'second array sorted');
- delete String.prototype.call;
- assert.equal(s.call, void 0, 'call function removed');
- });
-
- QUnit.test('pluck', function(assert) {
- var people = [{name: 'moe', age: 30}, {name: 'curly', age: 50}];
- assert.deepEqual(_.pluck(people, 'name'), ['moe', 'curly'], 'pulls names out of objects');
- assert.deepEqual(_.pluck(people, 'address'), [void 0, void 0], 'missing properties are returned as undefined');
- //compat: most flexible handling of edge cases
- assert.deepEqual(_.pluck([{'[object Object]': 1}], {}), [1]);
- });
-
- QUnit.test('where', function(assert) {
- var list = [{a: 1, b: 2}, {a: 2, b: 2}, {a: 1, b: 3}, {a: 1, b: 4}];
- var result = _.where(list, {a: 1});
- assert.equal(result.length, 3);
- assert.equal(result[result.length - 1].b, 4);
- result = _.where(list, {b: 2});
- assert.equal(result.length, 2);
- assert.equal(result[0].a, 1);
- result = _.where(list, {});
- assert.equal(result.length, list.length);
-
- function test() {}
- test.map = _.map;
- assert.deepEqual(_.where([_, {a: 1, b: 2}, _], test), [_, _], 'checks properties given function');
- });
-
- QUnit.test('findWhere', function(assert) {
- var list = [{a: 1, b: 2}, {a: 2, b: 2}, {a: 1, b: 3}, {a: 1, b: 4}, {a: 2, b: 4}];
- var result = _.findWhere(list, {a: 1});
- assert.deepEqual(result, {a: 1, b: 2});
- result = _.findWhere(list, {b: 4});
- assert.deepEqual(result, {a: 1, b: 4});
-
- result = _.findWhere(list, {c: 1});
- assert.ok(_.isUndefined(result), 'undefined when not found');
-
- result = _.findWhere([], {c: 1});
- assert.ok(_.isUndefined(result), 'undefined when searching empty list');
-
- function test() {}
- test.map = _.map;
- assert.equal(_.findWhere([_, {a: 1, b: 2}, _], test), _, 'checks properties given function');
-
- function TestClass() {
- this.y = 5;
- this.x = 'foo';
- }
- var expect = {c: 1, x: 'foo', y: 5};
- assert.deepEqual(_.findWhere([{y: 5, b: 6}, expect], new TestClass()), expect, 'uses class instance properties');
- });
-
- QUnit.test('max', function(assert) {
- assert.equal(-Infinity, _.max(null), 'can handle null/undefined');
- assert.equal(-Infinity, _.max(void 0), 'can handle null/undefined');
- assert.equal(-Infinity, _.max(null, _.identity), 'can handle null/undefined');
-
- assert.equal(3, _.max([1, 2, 3]), 'can perform a regular Math.max');
-
- var neg = _.max([1, 2, 3], function(num){ return -num; });
- assert.equal(neg, 1, 'can perform a computation-based max');
-
- assert.equal(-Infinity, _.max({}), 'Maximum value of an empty object');
- assert.equal(-Infinity, _.max([]), 'Maximum value of an empty array');
- assert.equal(_.max({a: 'a'}), -Infinity, 'Maximum value of a non-numeric collection');
-
- assert.equal(299999, _.max(_.range(1, 300000)), 'Maximum value of a too-big array');
-
- assert.equal(3, _.max([1, 2, 3, 'test']), 'Finds correct max in array starting with num and containing a NaN');
- assert.equal(3, _.max(['test', 1, 2, 3]), 'Finds correct max in array starting with NaN');
-
- assert.equal(3, _.max([1, 2, 3, null]), 'Finds correct max in array starting with num and containing a `null`');
- assert.equal(3, _.max([null, 1, 2, 3]), 'Finds correct max in array starting with a `null`');
-
- assert.equal(3, _.max([1, 2, 3, '']), 'Finds correct max in array starting with num and containing an empty string');
- assert.equal(3, _.max(['', 1, 2, 3]), 'Finds correct max in array starting with an empty string');
-
- assert.equal(3, _.max([1, 2, 3, false]), 'Finds correct max in array starting with num and containing a false');
- assert.equal(3, _.max([false, 1, 2, 3]), 'Finds correct max in array starting with a false');
-
- assert.equal(4, _.max([0, 1, 2, 3, 4]), 'Finds correct max in array containing a zero');
- assert.equal(0, _.max([-3, -2, -1, 0]), 'Finds correct max in array containing negative numbers');
-
- assert.deepEqual([3, 6], _.map([[1, 2, 3], [4, 5, 6]], _.max), 'Finds correct max in array when mapping through multiple arrays');
-
- var a = {x: -Infinity};
- var b = {x: -Infinity};
- var iterator = function(o){ return o.x; };
- assert.equal(_.max([a, b], iterator), a, 'Respects iterator return value of -Infinity');
-
- assert.deepEqual(_.max([{a: 1}, {a: 0, b: 3}, {a: 4}, {a: 2}], 'a'), {a: 4}, 'String keys use property iterator');
-
- assert.deepEqual(_.max([0, 2], function(c){ return c * this.x; }, {x: 1}), 2, 'Iterator context');
- assert.deepEqual(_.max([[1], [2, 3], [-1, 4], [5]], 0), [5], 'Lookup falsy iterator');
- assert.deepEqual(_.max([{0: 1}, {0: 2}, {0: -1}, {a: 1}], 0), {0: 2}, 'Lookup falsy iterator');
- });
-
- QUnit.test('min', function(assert) {
- assert.equal(Infinity, _.min(null), 'can handle null/undefined');
- assert.equal(Infinity, _.min(void 0), 'can handle null/undefined');
- assert.equal(Infinity, _.min(null, _.identity), 'can handle null/undefined');
-
- assert.equal(1, _.min([1, 2, 3]), 'can perform a regular Math.min');
-
- var neg = _.min([1, 2, 3], function(num){ return -num; });
- assert.equal(neg, 3, 'can perform a computation-based min');
-
- assert.equal(Infinity, _.min({}), 'Minimum value of an empty object');
- assert.equal(Infinity, _.min([]), 'Minimum value of an empty array');
- assert.equal(_.min({a: 'a'}), Infinity, 'Minimum value of a non-numeric collection');
-
- assert.deepEqual([1, 4], _.map([[1, 2, 3], [4, 5, 6]], _.min), 'Finds correct min in array when mapping through multiple arrays');
-
- var now = new Date(9999999999);
- var then = new Date(0);
- assert.equal(_.min([now, then]), then);
-
- assert.equal(1, _.min(_.range(1, 300000)), 'Minimum value of a too-big array');
-
- assert.equal(1, _.min([1, 2, 3, 'test']), 'Finds correct min in array starting with num and containing a NaN');
- assert.equal(1, _.min(['test', 1, 2, 3]), 'Finds correct min in array starting with NaN');
-
- assert.equal(1, _.min([1, 2, 3, null]), 'Finds correct min in array starting with num and containing a `null`');
- assert.equal(1, _.min([null, 1, 2, 3]), 'Finds correct min in array starting with a `null`');
-
- assert.equal(0, _.min([0, 1, 2, 3, 4]), 'Finds correct min in array containing a zero');
- assert.equal(-3, _.min([-3, -2, -1, 0]), 'Finds correct min in array containing negative numbers');
-
- var a = {x: Infinity};
- var b = {x: Infinity};
- var iterator = function(o){ return o.x; };
- assert.equal(_.min([a, b], iterator), a, 'Respects iterator return value of Infinity');
-
- assert.deepEqual(_.min([{a: 1}, {a: 0, b: 3}, {a: 4}, {a: 2}], 'a'), {a: 0, b: 3}, 'String keys use property iterator');
-
- assert.deepEqual(_.min([0, 2], function(c){ return c * this.x; }, {x: -1}), 2, 'Iterator context');
- assert.deepEqual(_.min([[1], [2, 3], [-1, 4], [5]], 0), [-1, 4], 'Lookup falsy iterator');
- assert.deepEqual(_.min([{0: 1}, {0: 2}, {0: -1}, {a: 1}], 0), {0: -1}, 'Lookup falsy iterator');
- });
-
- QUnit.test('sortBy', function(assert) {
- var people = [{name: 'curly', age: 50}, {name: 'moe', age: 30}];
- people = _.sortBy(people, function(person){ return person.age; });
- assert.deepEqual(_.pluck(people, 'name'), ['moe', 'curly'], 'stooges sorted by age');
-
- var list = [void 0, 4, 1, void 0, 3, 2];
- assert.deepEqual(_.sortBy(list, _.identity), [1, 2, 3, 4, void 0, void 0], 'sortBy with undefined values');
-
- list = ['one', 'two', 'three', 'four', 'five'];
- var sorted = _.sortBy(list, 'length');
- assert.deepEqual(sorted, ['one', 'two', 'four', 'five', 'three'], 'sorted by length');
-
- function Pair(x, y) {
- this.x = x;
- this.y = y;
- }
-
- var stableArray = [
- new Pair(1, 1), new Pair(1, 2),
- new Pair(1, 3), new Pair(1, 4),
- new Pair(1, 5), new Pair(1, 6),
- new Pair(2, 1), new Pair(2, 2),
- new Pair(2, 3), new Pair(2, 4),
- new Pair(2, 5), new Pair(2, 6),
- new Pair(void 0, 1), new Pair(void 0, 2),
- new Pair(void 0, 3), new Pair(void 0, 4),
- new Pair(void 0, 5), new Pair(void 0, 6)
- ];
-
- var stableObject = _.object('abcdefghijklmnopqr'.split(''), stableArray);
-
- var actual = _.sortBy(stableArray, function(pair) {
- return pair.x;
- });
-
- assert.deepEqual(actual, stableArray, 'sortBy should be stable for arrays');
- assert.deepEqual(_.sortBy(stableArray, 'x'), stableArray, 'sortBy accepts property string');
-
- actual = _.sortBy(stableObject, function(pair) {
- return pair.x;
- });
-
- assert.deepEqual(actual, stableArray, 'sortBy should be stable for objects');
-
- list = ['q', 'w', 'e', 'r', 't', 'y'];
- assert.deepEqual(_.sortBy(list), ['e', 'q', 'r', 't', 'w', 'y'], 'uses _.identity if iterator is not specified');
- });
-
- QUnit.test('groupBy', function(assert) {
- var parity = _.groupBy([1, 2, 3, 4, 5, 6], function(num){ return num % 2; });
- assert.ok('0' in parity && '1' in parity, 'created a group for each value');
- assert.deepEqual(parity[0], [2, 4, 6], 'put each even number in the right group');
-
- var list = ['one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine', 'ten'];
- var grouped = _.groupBy(list, 'length');
- assert.deepEqual(grouped['3'], ['one', 'two', 'six', 'ten']);
- assert.deepEqual(grouped['4'], ['four', 'five', 'nine']);
- assert.deepEqual(grouped['5'], ['three', 'seven', 'eight']);
-
- var context = {};
- _.groupBy([{}], function(){ assert.ok(this === context); }, context);
-
- grouped = _.groupBy([4.2, 6.1, 6.4], function(num) {
- return Math.floor(num) > 4 ? 'hasOwnProperty' : 'constructor';
- });
- assert.equal(grouped.constructor.length, 1);
- assert.equal(grouped.hasOwnProperty.length, 2);
-
- var array = [{}];
- _.groupBy(array, function(value, index, obj){ assert.ok(obj === array); });
-
- array = [1, 2, 1, 2, 3];
- grouped = _.groupBy(array);
- assert.equal(grouped['1'].length, 2);
- assert.equal(grouped['3'].length, 1);
-
- var matrix = [
- [1, 2],
- [1, 3],
- [2, 3]
- ];
- assert.deepEqual(_.groupBy(matrix, 0), {1: [[1, 2], [1, 3]], 2: [[2, 3]]});
- assert.deepEqual(_.groupBy(matrix, 1), {2: [[1, 2]], 3: [[1, 3], [2, 3]]});
- });
-
- QUnit.test('indexBy', function(assert) {
- var parity = _.indexBy([1, 2, 3, 4, 5], function(num){ return num % 2 === 0; });
- assert.equal(parity['true'], 4);
- assert.equal(parity['false'], 5);
-
- var list = ['one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine', 'ten'];
- var grouped = _.indexBy(list, 'length');
- assert.equal(grouped['3'], 'ten');
- assert.equal(grouped['4'], 'nine');
- assert.equal(grouped['5'], 'eight');
-
- var array = [1, 2, 1, 2, 3];
- grouped = _.indexBy(array);
- assert.equal(grouped['1'], 1);
- assert.equal(grouped['2'], 2);
- assert.equal(grouped['3'], 3);
- });
-
- QUnit.test('countBy', function(assert) {
- var parity = _.countBy([1, 2, 3, 4, 5], function(num){ return num % 2 === 0; });
- assert.equal(parity['true'], 2);
- assert.equal(parity['false'], 3);
-
- var list = ['one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine', 'ten'];
- var grouped = _.countBy(list, 'length');
- assert.equal(grouped['3'], 4);
- assert.equal(grouped['4'], 3);
- assert.equal(grouped['5'], 3);
-
- var context = {};
- _.countBy([{}], function(){ assert.ok(this === context); }, context);
-
- grouped = _.countBy([4.2, 6.1, 6.4], function(num) {
- return Math.floor(num) > 4 ? 'hasOwnProperty' : 'constructor';
- });
- assert.equal(grouped.constructor, 1);
- assert.equal(grouped.hasOwnProperty, 2);
-
- var array = [{}];
- _.countBy(array, function(value, index, obj){ assert.ok(obj === array); });
-
- array = [1, 2, 1, 2, 3];
- grouped = _.countBy(array);
- assert.equal(grouped['1'], 2);
- assert.equal(grouped['3'], 1);
- });
-
- QUnit.test('shuffle', function(assert) {
- assert.deepEqual(_.shuffle([1]), [1], 'behaves correctly on size 1 arrays');
- var numbers = _.range(20);
- var shuffled = _.shuffle(numbers);
- assert.notDeepEqual(numbers, shuffled, 'does change the order'); // Chance of false negative: 1 in ~2.4*10^18
- assert.notStrictEqual(numbers, shuffled, 'original object is unmodified');
- assert.deepEqual(numbers, _.sortBy(shuffled), 'contains the same members before and after shuffle');
-
- shuffled = _.shuffle({a: 1, b: 2, c: 3, d: 4});
- assert.equal(shuffled.length, 4);
- assert.deepEqual(shuffled.sort(), [1, 2, 3, 4], 'works on objects');
- });
-
- QUnit.test('sample', function(assert) {
- assert.strictEqual(_.sample([1]), 1, 'behaves correctly when no second parameter is given');
- assert.deepEqual(_.sample([1, 2, 3], -2), [], 'behaves correctly on negative n');
- var numbers = _.range(10);
- var allSampled = _.sample(numbers, 10).sort();
- assert.deepEqual(allSampled, numbers, 'contains the same members before and after sample');
- allSampled = _.sample(numbers, 20).sort();
- assert.deepEqual(allSampled, numbers, 'also works when sampling more objects than are present');
- assert.ok(_.contains(numbers, _.sample(numbers)), 'sampling a single element returns something from the array');
- assert.strictEqual(_.sample([]), void 0, 'sampling empty array with no number returns undefined');
- assert.notStrictEqual(_.sample([], 5), [], 'sampling empty array with a number returns an empty array');
- assert.notStrictEqual(_.sample([1, 2, 3], 0), [], 'sampling an array with 0 picks returns an empty array');
- assert.deepEqual(_.sample([1, 2], -1), [], 'sampling a negative number of picks returns an empty array');
- assert.ok(_.contains([1, 2, 3], _.sample({a: 1, b: 2, c: 3})), 'sample one value from an object');
- var partialSample = _.sample(_.range(1000), 10);
- var partialSampleSorted = partialSample.sort();
- assert.notDeepEqual(partialSampleSorted, _.range(10), 'samples from the whole array, not just the beginning');
- });
-
- QUnit.test('toArray', function(assert) {
- assert.ok(!_.isArray(arguments), 'arguments object is not an array');
- assert.ok(_.isArray(_.toArray(arguments)), 'arguments object converted into array');
- var a = [1, 2, 3];
- assert.ok(_.toArray(a) !== a, 'array is cloned');
- assert.deepEqual(_.toArray(a), [1, 2, 3], 'cloned array contains same elements');
-
- var numbers = _.toArray({one: 1, two: 2, three: 3});
- assert.deepEqual(numbers, [1, 2, 3], 'object flattened into array');
-
- var hearts = '\uD83D\uDC95';
- var pair = hearts.split('');
- var expected = [pair[0], hearts, '&', hearts, pair[1]];
- assert.deepEqual(_.toArray(expected.join('')), expected, 'maintains astral characters');
- assert.deepEqual(_.toArray(''), [], 'empty string into empty array');
-
- if (typeof document != 'undefined') {
- // test in IE < 9
- var actual;
- try {
- actual = _.toArray(document.childNodes);
- } catch (e) { /* ignored */ }
- assert.deepEqual(actual, _.map(document.childNodes, _.identity), 'works on NodeList');
- }
- });
-
- QUnit.test('size', function(assert) {
- assert.equal(_.size({one: 1, two: 2, three: 3}), 3, 'can compute the size of an object');
- assert.equal(_.size([1, 2, 3]), 3, 'can compute the size of an array');
- assert.equal(_.size({length: 3, 0: 0, 1: 0, 2: 0}), 3, 'can compute the size of Array-likes');
-
- var func = function() {
- return _.size(arguments);
- };
-
- assert.equal(func(1, 2, 3, 4), 4, 'can test the size of the arguments object');
-
- assert.equal(_.size('hello'), 5, 'can compute the size of a string literal');
- assert.equal(_.size(new String('hello')), 5, 'can compute the size of string object');
-
- assert.equal(_.size(null), 0, 'handles nulls');
- assert.equal(_.size(0), 0, 'handles numbers');
- });
-
- QUnit.test('partition', function(assert) {
- var list = [0, 1, 2, 3, 4, 5];
- assert.deepEqual(_.partition(list, function(x) { return x < 4; }), [[0, 1, 2, 3], [4, 5]], 'handles bool return values');
- assert.deepEqual(_.partition(list, function(x) { return x & 1; }), [[1, 3, 5], [0, 2, 4]], 'handles 0 and 1 return values');
- assert.deepEqual(_.partition(list, function(x) { return x - 3; }), [[0, 1, 2, 4, 5], [3]], 'handles other numeric return values');
- assert.deepEqual(_.partition(list, function(x) { return x > 1 ? null : true; }), [[0, 1], [2, 3, 4, 5]], 'handles null return values');
- assert.deepEqual(_.partition(list, function(x) { if (x < 2) return true; }), [[0, 1], [2, 3, 4, 5]], 'handles undefined return values');
- assert.deepEqual(_.partition({a: 1, b: 2, c: 3}, function(x) { return x > 1; }), [[2, 3], [1]], 'handles objects');
-
- assert.deepEqual(_.partition(list, function(x, index) { return index % 2; }), [[1, 3, 5], [0, 2, 4]], 'can reference the array index');
- assert.deepEqual(_.partition(list, function(x, index, arr) { return x === arr.length - 1; }), [[5], [0, 1, 2, 3, 4]], 'can reference the collection');
-
- // Default iterator
- assert.deepEqual(_.partition([1, false, true, '']), [[1, true], [false, '']], 'Default iterator');
- assert.deepEqual(_.partition([{x: 1}, {x: 0}, {x: 1}], 'x'), [[{x: 1}, {x: 1}], [{x: 0}]], 'Takes a string');
-
- // Context
- var predicate = function(x){ return x === this.x; };
- assert.deepEqual(_.partition([1, 2, 3], predicate, {x: 2}), [[2], [1, 3]], 'partition takes a context argument');
-
- assert.deepEqual(_.partition([{a: 1}, {b: 2}, {a: 1, b: 2}], {a: 1}), [[{a: 1}, {a: 1, b: 2}], [{b: 2}]], 'predicate can be object');
-
- var object = {a: 1};
- _.partition(object, function(val, key, obj) {
- assert.equal(val, 1);
- assert.equal(key, 'a');
- assert.equal(obj, object);
- assert.equal(this, predicate);
- }, predicate);
- });
-
- if (typeof document != 'undefined') {
- QUnit.test('Can use various collection methods on NodeLists', function(assert) {
- var parent = document.createElement('div');
- parent.innerHTML = '<span id=id1></span>textnode<span id=id2></span>';
-
- var elementChildren = _.filter(parent.childNodes, _.isElement);
- assert.equal(elementChildren.length, 2);
-
- assert.deepEqual(_.map(elementChildren, 'id'), ['id1', 'id2']);
- assert.deepEqual(_.map(parent.childNodes, 'nodeType'), [1, 3, 1]);
-
- assert.ok(!_.every(parent.childNodes, _.isElement));
- assert.ok(_.some(parent.childNodes, _.isElement));
-
- function compareNode(node) {
- return _.isElement(node) ? node.id.charAt(2) : void 0;
- }
- assert.equal(_.max(parent.childNodes, compareNode), _.last(parent.childNodes));
- assert.equal(_.min(parent.childNodes, compareNode), _.first(parent.childNodes));
- });
- }
-
-}());
diff --git a/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/cross-document.js b/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/cross-document.js
deleted file mode 100644
index cb68a3d9..00000000
--- a/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/cross-document.js
+++ /dev/null
@@ -1,141 +0,0 @@
-(function() {
- if (typeof document == 'undefined') return;
-
- var _ = typeof require == 'function' ? require('..') : window._;
-
- QUnit.module('Cross Document');
- /* global iObject, iElement, iArguments, iFunction, iArray, iError, iString, iNumber, iBoolean, iDate, iRegExp, iNaN, iNull, iUndefined, ActiveXObject */
-
- // Setup remote variables for iFrame tests.
- var iframe = document.createElement('iframe');
- iframe.frameBorder = iframe.height = iframe.width = 0;
- document.body.appendChild(iframe);
- var iDoc = (iDoc = iframe.contentDocument || iframe.contentWindow).document || iDoc;
- iDoc.write(
- [
- '<script>',
- 'parent.iElement = document.createElement("div");',
- 'parent.iArguments = (function(){ return arguments; })(1, 2, 3);',
- 'parent.iArray = [1, 2, 3];',
- 'parent.iString = new String("hello");',
- 'parent.iNumber = new Number(100);',
- 'parent.iFunction = (function(){});',
- 'parent.iDate = new Date();',
- 'parent.iRegExp = /hi/;',
- 'parent.iNaN = NaN;',
- 'parent.iNull = null;',
- 'parent.iBoolean = new Boolean(false);',
- 'parent.iUndefined = undefined;',
- 'parent.iObject = {};',
- 'parent.iError = new Error();',
- '</script>'
- ].join('\n')
- );
- iDoc.close();
-
- QUnit.test('isEqual', function(assert) {
-
- assert.ok(!_.isEqual(iNumber, 101));
- assert.ok(_.isEqual(iNumber, 100));
-
- // Objects from another frame.
- assert.ok(_.isEqual({}, iObject), 'Objects with equivalent members created in different documents are equal');
-
- // Array from another frame.
- assert.ok(_.isEqual([1, 2, 3], iArray), 'Arrays with equivalent elements created in different documents are equal');
- });
-
- QUnit.test('isEmpty', function(assert) {
- assert.ok(!_([iNumber]).isEmpty(), '[1] is not empty');
- assert.ok(!_.isEmpty(iArray), '[] is empty');
- assert.ok(_.isEmpty(iObject), '{} is empty');
- });
-
- QUnit.test('isElement', function(assert) {
- assert.ok(!_.isElement('div'), 'strings are not dom elements');
- assert.ok(_.isElement(document.body), 'the body tag is a DOM element');
- assert.ok(_.isElement(iElement), 'even from another frame');
- });
-
- QUnit.test('isArguments', function(assert) {
- assert.ok(_.isArguments(iArguments), 'even from another frame');
- });
-
- QUnit.test('isObject', function(assert) {
- assert.ok(_.isObject(iElement), 'even from another frame');
- assert.ok(_.isObject(iFunction), 'even from another frame');
- });
-
- QUnit.test('isArray', function(assert) {
- assert.ok(_.isArray(iArray), 'even from another frame');
- });
-
- QUnit.test('isString', function(assert) {
- assert.ok(_.isString(iString), 'even from another frame');
- });
-
- QUnit.test('isNumber', function(assert) {
- assert.ok(_.isNumber(iNumber), 'even from another frame');
- });
-
- QUnit.test('isBoolean', function(assert) {
- assert.ok(_.isBoolean(iBoolean), 'even from another frame');
- });
-
- QUnit.test('isFunction', function(assert) {
- assert.ok(_.isFunction(iFunction), 'even from another frame');
- });
-
- QUnit.test('isDate', function(assert) {
- assert.ok(_.isDate(iDate), 'even from another frame');
- });
-
- QUnit.test('isRegExp', function(assert) {
- assert.ok(_.isRegExp(iRegExp), 'even from another frame');
- });
-
- QUnit.test('isNaN', function(assert) {
- assert.ok(_.isNaN(iNaN), 'even from another frame');
- });
-
- QUnit.test('isNull', function(assert) {
- assert.ok(_.isNull(iNull), 'even from another frame');
- });
-
- QUnit.test('isUndefined', function(assert) {
- assert.ok(_.isUndefined(iUndefined), 'even from another frame');
- });
-
- QUnit.test('isError', function(assert) {
- assert.ok(_.isError(iError), 'even from another frame');
- });
-
- if (typeof ActiveXObject != 'undefined') {
- QUnit.test('IE host objects', function(assert) {
- var xml = new ActiveXObject('Msxml2.DOMDocument.3.0');
- assert.ok(!_.isNumber(xml));
- assert.ok(!_.isBoolean(xml));
- assert.ok(!_.isNaN(xml));
- assert.ok(!_.isFunction(xml));
- assert.ok(!_.isNull(xml));
- assert.ok(!_.isUndefined(xml));
- });
-
- QUnit.test('#1621 IE 11 compat mode DOM elements are not functions', function(assert) {
- var fn = function() {};
- var xml = new ActiveXObject('Msxml2.DOMDocument.3.0');
- var div = document.createElement('div');
-
- // JIT the function
- var count = 200;
- while (count--) {
- _.isFunction(fn);
- }
-
- assert.equal(_.isFunction(xml), false);
- assert.equal(_.isFunction(div), false);
- assert.equal(_.isFunction(fn), true);
- });
- }
-
-}());
diff --git a/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/functions.js b/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/functions.js
deleted file mode 100644
index f696bd64..00000000
--- a/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/functions.js
+++ /dev/null
@@ -1,728 +0,0 @@
-(function() {
- var _ = typeof require == 'function' ? require('..') : window._;
-
- QUnit.module('Functions');
- QUnit.config.asyncRetries = 3;
-
- QUnit.test('bind', function(assert) {
- var context = {name: 'moe'};
- var func = function(arg) { return 'name: ' + (this.name || arg); };
- var bound = _.bind(func, context);
- assert.equal(bound(), 'name: moe', 'can bind a function to a context');
-
- bound = _(func).bind(context);
- assert.equal(bound(), 'name: moe', 'can do OO-style binding');
-
- bound = _.bind(func, null, 'curly');
- var result = bound();
- // Work around a PhantomJS bug when applying a function with null|undefined.
- assert.ok(result === 'name: curly' || result === 'name: ' + window.name, 'can bind without specifying a context');
-
- func = function(salutation, name) { return salutation + ': ' + name; };
- func = _.bind(func, this, 'hello');
- assert.equal(func('moe'), 'hello: moe', 'the function was partially applied in advance');
-
- func = _.bind(func, this, 'curly');
- assert.equal(func(), 'hello: curly', 'the function was completely applied in advance');
-
- func = function(salutation, firstname, lastname) { return salutation + ': ' + firstname + ' ' + lastname; };
- func = _.bind(func, this, 'hello', 'moe', 'curly');
- assert.equal(func(), 'hello: moe curly', 'the function was partially applied in advance and can accept multiple arguments');
-
- func = function(ctx, message) { assert.equal(this, ctx, message); };
- _.bind(func, 0, 0, 'can bind a function to `0`')();
- _.bind(func, '', '', 'can bind a function to an empty string')();
- _.bind(func, false, false, 'can bind a function to `false`')();
-
- // These tests are only meaningful when using a browser without a native bind function
- // To test this with a modern browser, set underscore's nativeBind to undefined
- var F = function() { return this; };
- var boundf = _.bind(F, {hello: 'moe curly'});
- var Boundf = boundf; // make eslint happy.
- var newBoundf = new Boundf();
- assert.equal(newBoundf.hello, void 0, 'function should not be bound to the context, to comply with ECMAScript 5');
- assert.equal(boundf().hello, 'moe curly', "When called without the new operator, it's OK to be bound to the context");
- assert.ok(newBoundf instanceof F, 'a bound instance is an instance of the original function');
-
- assert.raises(function() { _.bind('notafunction'); }, TypeError, 'throws an error when binding to a non-function');
- });
-
- QUnit.test('partial', function(assert) {
- var obj = {name: 'moe'};
- var func = function() { return this.name + ' ' + _.toArray(arguments).join(' '); };
-
- obj.func = _.partial(func, 'a', 'b');
- assert.equal(obj.func('c', 'd'), 'moe a b c d', 'can partially apply');
-
- obj.func = _.partial(func, _, 'b', _, 'd');
- assert.equal(obj.func('a', 'c'), 'moe a b c d', 'can partially apply with placeholders');
-
- func = _.partial(function() { return arguments.length; }, _, 'b', _, 'd');
- assert.equal(func('a', 'c', 'e'), 5, 'accepts more arguments than the number of placeholders');
- assert.equal(func('a'), 4, 'accepts fewer arguments than the number of placeholders');
-
- func = _.partial(function() { return typeof arguments[2]; }, _, 'b', _, 'd');
- assert.equal(func('a'), 'undefined', 'unfilled placeholders are undefined');
-
- // passes context
- function MyWidget(name, options) {
- this.name = name;
- this.options = options;
- }
- MyWidget.prototype.get = function() {
- return this.name;
- };
- var MyWidgetWithCoolOpts = _.partial(MyWidget, _, {a: 1});
- var widget = new MyWidgetWithCoolOpts('foo');
- assert.ok(widget instanceof MyWidget, 'Can partially bind a constructor');
- assert.equal(widget.get(), 'foo', 'keeps prototype');
- assert.deepEqual(widget.options, {a: 1});
-
- _.partial.placeholder = obj;
- func = _.partial(function() { return arguments.length; }, obj, 'b', obj, 'd');
- assert.equal(func('a'), 4, 'allows the placeholder to be swapped out');
-
- _.partial.placeholder = {};
- func = _.partial(function() { return arguments.length; }, obj, 'b', obj, 'd');
- assert.equal(func('a'), 5, 'swapping the placeholder preserves previously bound arguments');
-
- _.partial.placeholder = _;
- });
-
- QUnit.test('bindAll', function(assert) {
- var curly = {name: 'curly'};
- var moe = {
- name: 'moe',
- getName: function() { return 'name: ' + this.name; },
- sayHi: function() { return 'hi: ' + this.name; }
- };
- curly.getName = moe.getName;
- _.bindAll(moe, 'getName', 'sayHi');
- curly.sayHi = moe.sayHi;
- assert.equal(curly.getName(), 'name: curly', 'unbound function is bound to current object');
- assert.equal(curly.sayHi(), 'hi: moe', 'bound function is still bound to original object');
-
- curly = {name: 'curly'};
- moe = {
- name: 'moe',
- getName: function() { return 'name: ' + this.name; },
- sayHi: function() { return 'hi: ' + this.name; },
- sayLast: function() { return this.sayHi(_.last(arguments)); }
- };
-
- assert.raises(function() { _.bindAll(moe); }, Error, 'throws an error for bindAll with no functions named');
- assert.raises(function() { _.bindAll(moe, 'sayBye'); }, TypeError, 'throws an error for bindAll if the given key is undefined');
- assert.raises(function() { _.bindAll(moe, 'name'); }, TypeError, 'throws an error for bindAll if the given key is not a function');
-
- _.bindAll(moe, 'sayHi', 'sayLast');
- curly.sayHi = moe.sayHi;
- assert.equal(curly.sayHi(), 'hi: moe');
-
- var sayLast = moe.sayLast;
- assert.equal(sayLast(1, 2, 3, 4, 5, 6, 7, 'Tom'), 'hi: moe', 'createCallback works with any number of arguments');
-
- _.bindAll(moe, ['getName']);
- var getName = moe.getName;
- assert.equal(getName(), 'name: moe', 'flattens arguments into a single list');
- });
-
- QUnit.test('memoize', function(assert) {
- var fib = function(n) {
- return n < 2 ? n : fib(n - 1) + fib(n - 2);
- };
- assert.equal(fib(10), 55, 'a memoized version of fibonacci produces identical results');
- fib = _.memoize(fib); // Redefine `fib` for memoization
- assert.equal(fib(10), 55, 'a memoized version of fibonacci produces identical results');
-
- var o = function(str) {
- return str;
- };
- var fastO = _.memoize(o);
- assert.equal(o('toString'), 'toString', 'checks hasOwnProperty');
- assert.equal(fastO('toString'), 'toString', 'checks hasOwnProperty');
-
- // Expose the cache.
- var upper = _.memoize(function(s) {
- return s.toUpperCase();
- });
- assert.equal(upper('foo'), 'FOO');
- assert.equal(upper('bar'), 'BAR');
- assert.deepEqual(upper.cache, {foo: 'FOO', bar: 'BAR'});
- upper.cache = {foo: 'BAR', bar: 'FOO'};
- assert.equal(upper('foo'), 'BAR');
- assert.equal(upper('bar'), 'FOO');
-
- var hashed = _.memoize(function(key) {
- //https://github.com/jashkenas/underscore/pull/1679#discussion_r13736209
- assert.ok(/[a-z]+/.test(key), 'hasher doesn\'t change keys');
- return key;
- }, function(key) {
- return key.toUpperCase();
- });
- hashed('yep');
- assert.deepEqual(hashed.cache, {YEP: 'yep'}, 'takes a hasher');
-
- // Test that the hash function can be used to swizzle the key.
- var objCacher = _.memoize(function(value, key) {
- return {key: key, value: value};
- }, function(value, key) {
- return key;
- });
- var myObj = objCacher('a', 'alpha');
- var myObjAlias = objCacher('b', 'alpha');
- assert.notStrictEqual(myObj, void 0, 'object is created if second argument used as key');
- assert.strictEqual(myObj, myObjAlias, 'object is cached if second argument used as key');
- assert.strictEqual(myObj.value, 'a', 'object is not modified if second argument used as key');
- });
-
- QUnit.test('delay', function(assert) {
- assert.expect(2);
- var done = assert.async();
- var delayed = false;
- _.delay(function(){ delayed = true; }, 100);
- setTimeout(function(){ assert.ok(!delayed, "didn't delay the function quite yet"); }, 50);
- setTimeout(function(){ assert.ok(delayed, 'delayed the function'); done(); }, 150);
- });
-
- QUnit.test('defer', function(assert) {
- assert.expect(1);
- var done = assert.async();
- var deferred = false;
- _.defer(function(bool){ deferred = bool; }, true);
- _.delay(function(){ assert.ok(deferred, 'deferred the function'); done(); }, 50);
- });
-
- QUnit.test('throttle', function(assert) {
- assert.expect(2);
- var done = assert.async();
- var counter = 0;
- var incr = function(){ counter++; };
- var throttledIncr = _.throttle(incr, 32);
- throttledIncr(); throttledIncr();
-
- assert.equal(counter, 1, 'incr was called immediately');
- _.delay(function(){ assert.equal(counter, 2, 'incr was throttled'); done(); }, 64);
- });
-
- QUnit.test('throttle arguments', function(assert) {
- assert.expect(2);
- var done = assert.async();
- var value = 0;
- var update = function(val){ value = val; };
- var throttledUpdate = _.throttle(update, 32);
- throttledUpdate(1); throttledUpdate(2);
- _.delay(function(){ throttledUpdate(3); }, 64);
- assert.equal(value, 1, 'updated to latest value');
- _.delay(function(){ assert.equal(value, 3, 'updated to latest value'); done(); }, 96);
- });
-
- QUnit.test('throttle once', function(assert) {
- assert.expect(2);
- var done = assert.async();
- var counter = 0;
- var incr = function(){ return ++counter; };
- var throttledIncr = _.throttle(incr, 32);
- var result = throttledIncr();
- _.delay(function(){
- assert.equal(result, 1, 'throttled functions return their value');
- assert.equal(counter, 1, 'incr was called once'); done();
- }, 64);
- });
-
- QUnit.test('throttle twice', function(assert) {
- assert.expect(1);
- var done = assert.async();
- var counter = 0;
- var incr = function(){ counter++; };
- var throttledIncr = _.throttle(incr, 32);
- throttledIncr(); throttledIncr();
- _.delay(function(){ assert.equal(counter, 2, 'incr was called twice'); done(); }, 64);
- });
-
- QUnit.test('more throttling', function(assert) {
- assert.expect(3);
- var done = assert.async();
- var counter = 0;
- var incr = function(){ counter++; };
- var throttledIncr = _.throttle(incr, 30);
- throttledIncr(); throttledIncr();
- assert.equal(counter, 1);
- _.delay(function(){
- assert.equal(counter, 2);
- throttledIncr();
- assert.equal(counter, 3);
- done();
- }, 85);
- });
-
- QUnit.test('throttle repeatedly with results', function(assert) {
- assert.expect(6);
- var done = assert.async();
- var counter = 0;
- var incr = function(){ return ++counter; };
- var throttledIncr = _.throttle(incr, 100);
- var results = [];
- var saveResult = function() { results.push(throttledIncr()); };
- saveResult(); saveResult();
- _.delay(saveResult, 50);
- _.delay(saveResult, 150);
- _.delay(saveResult, 160);
- _.delay(saveResult, 230);
- _.delay(function() {
- assert.equal(results[0], 1, 'incr was called once');
- assert.equal(results[1], 1, 'incr was throttled');
- assert.equal(results[2], 1, 'incr was throttled');
- assert.equal(results[3], 2, 'incr was called twice');
- assert.equal(results[4], 2, 'incr was throttled');
- assert.equal(results[5], 3, 'incr was called trailing');
- done();
- }, 300);
- });
-
- QUnit.test('throttle triggers trailing call when invoked repeatedly', function(assert) {
- assert.expect(2);
- var done = assert.async();
- var counter = 0;
- var limit = 48;
- var incr = function(){ counter++; };
- var throttledIncr = _.throttle(incr, 32);
-
- var stamp = new Date;
- while (new Date - stamp < limit) {
- throttledIncr();
- }
- var lastCount = counter;
- assert.ok(counter > 1);
-
- _.delay(function() {
- assert.ok(counter > lastCount);
- done();
- }, 96);
- });
-
- QUnit.test('throttle does not trigger leading call when leading is set to false', function(assert) {
- assert.expect(2);
- var done = assert.async();
- var counter = 0;
- var incr = function(){ counter++; };
- var throttledIncr = _.throttle(incr, 60, {leading: false});
-
- throttledIncr(); throttledIncr();
- assert.equal(counter, 0);
-
- _.delay(function() {
- assert.equal(counter, 1);
- done();
- }, 96);
- });
-
- QUnit.test('more throttle does not trigger leading call when leading is set to false', function(assert) {
- assert.expect(3);
- var done = assert.async();
- var counter = 0;
- var incr = function(){ counter++; };
- var throttledIncr = _.throttle(incr, 100, {leading: false});
-
- throttledIncr();
- _.delay(throttledIncr, 50);
- _.delay(throttledIncr, 60);
- _.delay(throttledIncr, 200);
- assert.equal(counter, 0);
-
- _.delay(function() {
- assert.equal(counter, 1);
- }, 250);
-
- _.delay(function() {
- assert.equal(counter, 2);
- done();
- }, 350);
- });
-
- QUnit.test('one more throttle with leading: false test', function(assert) {
- assert.expect(2);
- var done = assert.async();
- var counter = 0;
- var incr = function(){ counter++; };
- var throttledIncr = _.throttle(incr, 100, {leading: false});
-
- var time = new Date;
- while (new Date - time < 350) throttledIncr();
- assert.ok(counter <= 3);
-
- _.delay(function() {
- assert.ok(counter <= 4);
- done();
- }, 200);
- });
-
- QUnit.test('throttle does not trigger trailing call when trailing is set to false', function(assert) {
- assert.expect(4);
- var done = assert.async();
- var counter = 0;
- var incr = function(){ counter++; };
- var throttledIncr = _.throttle(incr, 60, {trailing: false});
-
- throttledIncr(); throttledIncr(); throttledIncr();
- assert.equal(counter, 1);
-
- _.delay(function() {
- assert.equal(counter, 1);
-
- throttledIncr(); throttledIncr();
- assert.equal(counter, 2);
-
- _.delay(function() {
- assert.equal(counter, 2);
- done();
- }, 96);
- }, 96);
- });
-
- QUnit.test('throttle continues to function after system time is set backwards', function(assert) {
- assert.expect(2);
- var done = assert.async();
- var counter = 0;
- var incr = function(){ counter++; };
- var throttledIncr = _.throttle(incr, 100);
- var origNowFunc = _.now;
-
- throttledIncr();
- assert.equal(counter, 1);
- _.now = function() {
- return new Date(2013, 0, 1, 1, 1, 1);
- };
-
- _.delay(function() {
- throttledIncr();
- assert.equal(counter, 2);
- done();
- _.now = origNowFunc;
- }, 200);
- });
-
- QUnit.test('throttle re-entrant', function(assert) {
- assert.expect(2);
- var done = assert.async();
- var sequence = [
- ['b1', 'b2'],
- ['c1', 'c2']
- ];
- var value = '';
- var throttledAppend;
- var append = function(arg){
- value += this + arg;
- var args = sequence.pop();
- if (args) {
- throttledAppend.call(args[0], args[1]);
- }
- };
- throttledAppend = _.throttle(append, 32);
- throttledAppend.call('a1', 'a2');
- assert.equal(value, 'a1a2');
- _.delay(function(){
- assert.equal(value, 'a1a2c1c2b1b2', 'append was throttled successfully');
- done();
- }, 100);
- });
-
- QUnit.test('throttle cancel', function(assert) {
- var done = assert.async();
- var counter = 0;
- var incr = function(){ counter++; };
- var throttledIncr = _.throttle(incr, 32);
- throttledIncr();
- throttledIncr.cancel();
- throttledIncr();
- throttledIncr();
-
- assert.equal(counter, 2, 'incr was called immediately');
- _.delay(function(){ assert.equal(counter, 3, 'incr was throttled'); done(); }, 64);
- });
-
- QUnit.test('throttle cancel with leading: false', function(assert) {
- var done = assert.async();
- var counter = 0;
- var incr = function(){ counter++; };
- var throttledIncr = _.throttle(incr, 32, {leading: false});
- throttledIncr();
- throttledIncr.cancel();
-
- assert.equal(counter, 0, 'incr was throttled');
- _.delay(function(){ assert.equal(counter, 0, 'incr was throttled'); done(); }, 64);
- });
-
- QUnit.test('debounce', function(assert) {
- assert.expect(1);
- var done = assert.async();
- var counter = 0;
- var incr = function(){ counter++; };
- var debouncedIncr = _.debounce(incr, 32);
- debouncedIncr(); debouncedIncr();
- _.delay(debouncedIncr, 16);
- _.delay(function(){ assert.equal(counter, 1, 'incr was debounced'); done(); }, 96);
- });
-
- QUnit.test('debounce cancel', function(assert) {
- assert.expect(1);
- var done = assert.async();
- var counter = 0;
- var incr = function(){ counter++; };
- var debouncedIncr = _.debounce(incr, 32);
- debouncedIncr();
- debouncedIncr.cancel();
- _.delay(function(){ assert.equal(counter, 0, 'incr was not called'); done(); }, 96);
- });
-
- QUnit.test('debounce asap', function(assert) {
- assert.expect(6);
- var done = assert.async();
- var a, b, c;
- var counter = 0;
- var incr = function(){ return ++counter; };
- var debouncedIncr = _.debounce(incr, 64, true);
- a = debouncedIncr();
- b = debouncedIncr();
- assert.equal(a, 1);
- assert.equal(b, 1);
- assert.equal(counter, 1, 'incr was called immediately');
- _.delay(debouncedIncr, 16);
- _.delay(debouncedIncr, 32);
- _.delay(debouncedIncr, 48);
- _.delay(function(){
- assert.equal(counter, 1, 'incr was debounced');
- c = debouncedIncr();
- assert.equal(c, 2);
- assert.equal(counter, 2, 'incr was called again');
- done();
- }, 128);
- });
-
- QUnit.test('debounce asap cancel', function(assert) {
- assert.expect(4);
- var done = assert.async();
- var a, b;
- var counter = 0;
- var incr = function(){ return ++counter; };
- var debouncedIncr = _.debounce(incr, 64, true);
- a = debouncedIncr();
- debouncedIncr.cancel();
- b = debouncedIncr();
- assert.equal(a, 1);
- assert.equal(b, 2);
- assert.equal(counter, 2, 'incr was called immediately');
- _.delay(debouncedIncr, 16);
- _.delay(debouncedIncr, 32);
- _.delay(debouncedIncr, 48);
- _.delay(function(){ assert.equal(counter, 2, 'incr was debounced'); done(); }, 128);
- });
-
- QUnit.test('debounce asap recursively', function(assert) {
- assert.expect(2);
- var done = assert.async();
- var counter = 0;
- var debouncedIncr = _.debounce(function(){
- counter++;
- if (counter < 10) debouncedIncr();
- }, 32, true);
- debouncedIncr();
- assert.equal(counter, 1, 'incr was called immediately');
- _.delay(function(){ assert.equal(counter, 1, 'incr was debounced'); done(); }, 96);
- });
-
- QUnit.test('debounce after system time is set backwards', function(assert) {
- assert.expect(2);
- var done = assert.async();
- var counter = 0;
- var origNowFunc = _.now;
- var debouncedIncr = _.debounce(function(){
- counter++;
- }, 100, true);
-
- debouncedIncr();
- assert.equal(counter, 1, 'incr was called immediately');
-
- _.now = function() {
- return new Date(2013, 0, 1, 1, 1, 1);
- };
-
- _.delay(function() {
- debouncedIncr();
- assert.equal(counter, 2, 'incr was debounced successfully');
- done();
- _.now = origNowFunc;
- }, 200);
- });
-
- QUnit.test('debounce re-entrant', function(assert) {
- assert.expect(2);
- var done = assert.async();
- var sequence = [
- ['b1', 'b2']
- ];
- var value = '';
- var debouncedAppend;
- var append = function(arg){
- value += this + arg;
- var args = sequence.pop();
- if (args) {
- debouncedAppend.call(args[0], args[1]);
- }
- };
- debouncedAppend = _.debounce(append, 32);
- debouncedAppend.call('a1', 'a2');
- assert.equal(value, '');
- _.delay(function(){
- assert.equal(value, 'a1a2b1b2', 'append was debounced successfully');
- done();
- }, 100);
- });
-
- QUnit.test('once', function(assert) {
- var num = 0;
- var increment = _.once(function(){ return ++num; });
- increment();
- increment();
- assert.equal(num, 1);
-
- assert.equal(increment(), 1, 'stores a memo to the last value');
- });
-
- QUnit.test('Recursive onced function.', function(assert) {
- assert.expect(1);
- var f = _.once(function(){
- assert.ok(true);
- f();
- });
- f();
- });
-
- QUnit.test('wrap', function(assert) {
- var greet = function(name){ return 'hi: ' + name; };
- var backwards = _.wrap(greet, function(func, name){ return func(name) + ' ' + name.split('').reverse().join(''); });
- assert.equal(backwards('moe'), 'hi: moe eom', 'wrapped the salutation function');
-
- var inner = function(){ return 'Hello '; };
- var obj = {name: 'Moe'};
- obj.hi = _.wrap(inner, function(fn){ return fn() + this.name; });
- assert.equal(obj.hi(), 'Hello Moe');
-
- var noop = function(){};
- var wrapped = _.wrap(noop, function(){ return Array.prototype.slice.call(arguments, 0); });
- var ret = wrapped(['whats', 'your'], 'vector', 'victor');
- assert.deepEqual(ret, [noop, ['whats', 'your'], 'vector', 'victor']);
- });
-
- QUnit.test('negate', function(assert) {
- var isOdd = function(n){ return n & 1; };
- assert.equal(_.negate(isOdd)(2), true, 'should return the complement of the given function');
- assert.equal(_.negate(isOdd)(3), false, 'should return the complement of the given function');
- });
-
- QUnit.test('compose', function(assert) {
- var greet = function(name){ return 'hi: ' + name; };
- var exclaim = function(sentence){ return sentence + '!'; };
- var composed = _.compose(exclaim, greet);
- assert.equal(composed('moe'), 'hi: moe!', 'can compose a function that takes another');
-
- composed = _.compose(greet, exclaim);
- assert.equal(composed('moe'), 'hi: moe!', 'in this case, the functions are also commutative');
-
- // f(g(h(x, y, z)))
- function h(x, y, z) {
- assert.equal(arguments.length, 3, 'First function called with multiple args');
- return z * y;
- }
- function g(x) {
- assert.equal(arguments.length, 1, 'Composed function is called with 1 argument');
- return x;
- }
- function f(x) {
- assert.equal(arguments.length, 1, 'Composed function is called with 1 argument');
- return x * 2;
- }
- composed = _.compose(f, g, h);
- assert.equal(composed(1, 2, 3), 12);
- });
-
- QUnit.test('after', function(assert) {
- var testAfter = function(afterAmount, timesCalled) {
- var afterCalled = 0;
- var after = _.after(afterAmount, function() {
- afterCalled++;
- });
- while (timesCalled--) after();
- return afterCalled;
- };
-
- assert.equal(testAfter(5, 5), 1, 'after(N) should fire after being called N times');
- assert.equal(testAfter(5, 4), 0, 'after(N) should not fire unless called N times');
- assert.equal(testAfter(0, 0), 0, 'after(0) should not fire immediately');
- assert.equal(testAfter(0, 1), 1, 'after(0) should fire when first invoked');
- });
-
- QUnit.test('before', function(assert) {
- var testBefore = function(beforeAmount, timesCalled) {
- var beforeCalled = 0;
- var before = _.before(beforeAmount, function() { beforeCalled++; });
- while (timesCalled--) before();
- return beforeCalled;
- };
-
- assert.equal(testBefore(5, 5), 4, 'before(N) should not fire after being called N times');
- assert.equal(testBefore(5, 4), 4, 'before(N) should fire before being called N times');
- assert.equal(testBefore(0, 0), 0, 'before(0) should not fire immediately');
- assert.equal(testBefore(0, 1), 0, 'before(0) should not fire when first invoked');
-
- var context = {num: 0};
- var increment = _.before(3, function(){ return ++this.num; });
- _.times(10, increment, context);
- assert.equal(increment(), 2, 'stores a memo to the last value');
- assert.equal(context.num, 2, 'provides context');
- });
-
- QUnit.test('iteratee', function(assert) {
- var identity = _.iteratee();
- assert.equal(identity, _.identity, '_.iteratee is exposed as an external function.');
-
- function fn() {
- return arguments;
- }
- _.each([_.iteratee(fn), _.iteratee(fn, {})], function(cb) {
- assert.equal(cb().length, 0);
- assert.deepEqual(_.toArray(cb(1, 2, 3)), _.range(1, 4));
- assert.deepEqual(_.toArray(cb(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)), _.range(1, 11));
- });
-
- });
-
- QUnit.test('restArgs', function(assert) {
- assert.expect(10);
- _.restArgs(function(a, args) {
- assert.strictEqual(a, 1);
- assert.deepEqual(args, [2, 3], 'collects rest arguments into an array');
- })(1, 2, 3);
-
- _.restArgs(function(a, args) {
- assert.strictEqual(a, void 0);
- assert.deepEqual(args, [], 'passes empty array if there are not enough arguments');
- })();
-
- _.restArgs(function(a, b, c, args) {
- assert.strictEqual(arguments.length, 4);
- assert.deepEqual(args, [4, 5], 'works on functions with many named parameters');
- })(1, 2, 3, 4, 5);
-
- var obj = {};
- _.restArgs(function() {
- assert.strictEqual(this, obj, 'invokes function with this context');
- }).call(obj);
-
- _.restArgs(function(array, iteratee, context) {
- assert.deepEqual(array, [1, 2, 3, 4], 'startIndex can be used manually specify index of rest parameter');
- assert.strictEqual(iteratee, void 0);
- assert.strictEqual(context, void 0);
- }, 0)(1, 2, 3, 4);
- });
-
-}());
diff --git a/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/objects.js b/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/objects.js
deleted file mode 100644
index fa1d9e3e..00000000
--- a/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/objects.js
+++ /dev/null
@@ -1,1102 +0,0 @@
-(function() {
- var _ = typeof require == 'function' ? require('..') : window._;
-
- QUnit.module('Objects');
-
- var testElement = typeof document === 'object' ? document.createElement('div') : void 0;
-
- QUnit.test('keys', function(assert) {
- assert.deepEqual(_.keys({one: 1, two: 2}), ['one', 'two'], 'can extract the keys from an object');
- // the test above is not safe because it relies on for-in enumeration order
- var a = []; a[1] = 0;
- assert.deepEqual(_.keys(a), ['1'], 'is not fooled by sparse arrays; see issue #95');
- assert.deepEqual(_.keys(null), []);
- assert.deepEqual(_.keys(void 0), []);
- assert.deepEqual(_.keys(1), []);
- assert.deepEqual(_.keys('a'), []);
- assert.deepEqual(_.keys(true), []);
-
- // keys that may be missed if the implementation isn't careful
- var trouble = {
- constructor: Object,
- valueOf: _.noop,
- hasOwnProperty: null,
- toString: 5,
- toLocaleString: void 0,
- propertyIsEnumerable: /a/,
- isPrototypeOf: this,
- __defineGetter__: Boolean,
- __defineSetter__: {},
- __lookupSetter__: false,
- __lookupGetter__: []
- };
- var troubleKeys = ['constructor', 'valueOf', 'hasOwnProperty', 'toString', 'toLocaleString', 'propertyIsEnumerable',
- 'isPrototypeOf', '__defineGetter__', '__defineSetter__', '__lookupSetter__', '__lookupGetter__'].sort();
- assert.deepEqual(_.keys(trouble).sort(), troubleKeys, 'matches non-enumerable properties');
- });
-
- QUnit.test('allKeys', function(assert) {
- assert.deepEqual(_.allKeys({one: 1, two: 2}), ['one', 'two'], 'can extract the allKeys from an object');
- // the test above is not safe because it relies on for-in enumeration order
- var a = []; a[1] = 0;
- assert.deepEqual(_.allKeys(a), ['1'], 'is not fooled by sparse arrays; see issue #95');
-
- a.a = a;
- assert.deepEqual(_.allKeys(a), ['1', 'a'], 'is not fooled by sparse arrays with additional properties');
-
- _.each([null, void 0, 1, 'a', true, NaN, {}, [], new Number(5), new Date(0)], function(val) {
- assert.deepEqual(_.allKeys(val), []);
- });
-
- // allKeys that may be missed if the implementation isn't careful
- var trouble = {
- constructor: Object,
- valueOf: _.noop,
- hasOwnProperty: null,
- toString: 5,
- toLocaleString: void 0,
- propertyIsEnumerable: /a/,
- isPrototypeOf: this
- };
- var troubleKeys = ['constructor', 'valueOf', 'hasOwnProperty', 'toString', 'toLocaleString', 'propertyIsEnumerable',
- 'isPrototypeOf'].sort();
- assert.deepEqual(_.allKeys(trouble).sort(), troubleKeys, 'matches non-enumerable properties');
-
- function A() {}
- A.prototype.foo = 'foo';
- var b = new A();
- b.bar = 'bar';
- assert.deepEqual(_.allKeys(b).sort(), ['bar', 'foo'], 'should include inherited keys');
-
- function y() {}
- y.x = 'z';
- assert.deepEqual(_.allKeys(y), ['x'], 'should get keys from constructor');
- });
-
- QUnit.test('values', function(assert) {
- assert.deepEqual(_.values({one: 1, two: 2}), [1, 2], 'can extract the values from an object');
- assert.deepEqual(_.values({one: 1, two: 2, length: 3}), [1, 2, 3], '... even when one of them is "length"');
- });
-
- QUnit.test('pairs', function(assert) {
- assert.deepEqual(_.pairs({one: 1, two: 2}), [['one', 1], ['two', 2]], 'can convert an object into pairs');
- assert.deepEqual(_.pairs({one: 1, two: 2, length: 3}), [['one', 1], ['two', 2], ['length', 3]], '... even when one of them is "length"');
- });
-
- QUnit.test('invert', function(assert) {
- var obj = {first: 'Moe', second: 'Larry', third: 'Curly'};
- assert.deepEqual(_.keys(_.invert(obj)), ['Moe', 'Larry', 'Curly'], 'can invert an object');
- assert.deepEqual(_.invert(_.invert(obj)), obj, 'two inverts gets you back where you started');
-
- obj = {length: 3};
- assert.equal(_.invert(obj)['3'], 'length', 'can invert an object with "length"');
- });
-
- QUnit.test('functions', function(assert) {
- var obj = {a: 'dash', b: _.map, c: /yo/, d: _.reduce};
- assert.deepEqual(['b', 'd'], _.functions(obj), 'can grab the function names of any passed-in object');
-
- var Animal = function(){};
- Animal.prototype.run = function(){};
- assert.deepEqual(_.functions(new Animal), ['run'], 'also looks up functions on the prototype');
- });
-
- QUnit.test('methods', function(assert) {
- assert.strictEqual(_.methods, _.functions, 'is an alias for functions');
- });
-
- QUnit.test('extend', function(assert) {
- var result;
- assert.equal(_.extend({}, {a: 'b'}).a, 'b', 'can extend an object with the attributes of another');
- assert.equal(_.extend({a: 'x'}, {a: 'b'}).a, 'b', 'properties in source override destination');
- assert.equal(_.extend({x: 'x'}, {a: 'b'}).x, 'x', "properties not in source don't get overriden");
- result = _.extend({x: 'x'}, {a: 'a'}, {b: 'b'});
- assert.deepEqual(result, {x: 'x', a: 'a', b: 'b'}, 'can extend from multiple source objects');
- result = _.extend({x: 'x'}, {a: 'a', x: 2}, {a: 'b'});
- assert.deepEqual(result, {x: 2, a: 'b'}, 'extending from multiple source objects last property trumps');
- result = _.extend({}, {a: void 0, b: null});
- assert.deepEqual(_.keys(result), ['a', 'b'], 'extend copies undefined values');
-
- var F = function() {};
- F.prototype = {a: 'b'};
- var subObj = new F();
- subObj.c = 'd';
- assert.deepEqual(_.extend({}, subObj), {a: 'b', c: 'd'}, 'extend copies all properties from source');
- _.extend(subObj, {});
- assert.ok(!subObj.hasOwnProperty('a'), "extend does not convert destination object's 'in' properties to 'own' properties");
-
- try {
- result = {};
- _.extend(result, null, void 0, {a: 1});
- } catch (e) { /* ignored */ }
-
- assert.equal(result.a, 1, 'should not error on `null` or `undefined` sources');
-
- assert.strictEqual(_.extend(null, {a: 1}), null, 'extending null results in null');
- assert.strictEqual(_.extend(void 0, {a: 1}), void 0, 'extending undefined results in undefined');
- });
-
- QUnit.test('extendOwn', function(assert) {
- var result;
- assert.equal(_.extendOwn({}, {a: 'b'}).a, 'b', 'can extend an object with the attributes of another');
- assert.equal(_.extendOwn({a: 'x'}, {a: 'b'}).a, 'b', 'properties in source override destination');
- assert.equal(_.extendOwn({x: 'x'}, {a: 'b'}).x, 'x', "properties not in source don't get overriden");
- result = _.extendOwn({x: 'x'}, {a: 'a'}, {b: 'b'});
- assert.deepEqual(result, {x: 'x', a: 'a', b: 'b'}, 'can extend from multiple source objects');
- result = _.extendOwn({x: 'x'}, {a: 'a', x: 2}, {a: 'b'});
- assert.deepEqual(result, {x: 2, a: 'b'}, 'extending from multiple source objects last property trumps');
- assert.deepEqual(_.extendOwn({}, {a: void 0, b: null}), {a: void 0, b: null}, 'copies undefined values');
-
- var F = function() {};
- F.prototype = {a: 'b'};
- var subObj = new F();
- subObj.c = 'd';
- assert.deepEqual(_.extendOwn({}, subObj), {c: 'd'}, 'copies own properties from source');
-
- result = {};
- assert.deepEqual(_.extendOwn(result, null, void 0, {a: 1}), {a: 1}, 'should not error on `null` or `undefined` sources');
-
- _.each(['a', 5, null, false], function(val) {
- assert.strictEqual(_.extendOwn(val, {a: 1}), val, 'extending non-objects results in returning the non-object value');
- });
-
- assert.strictEqual(_.extendOwn(void 0, {a: 1}), void 0, 'extending undefined results in undefined');
-
- result = _.extendOwn({a: 1, 0: 2, 1: '5', length: 6}, {0: 1, 1: 2, length: 2});
- assert.deepEqual(result, {a: 1, 0: 1, 1: 2, length: 2}, 'should treat array-like objects like normal objects');
- });
-
- QUnit.test('assign', function(assert) {
- assert.strictEqual(_.assign, _.extendOwn, 'is an alias for extendOwn');
- });
-
- QUnit.test('pick', function(assert) {
- var result;
- result = _.pick({a: 1, b: 2, c: 3}, 'a', 'c');
- assert.deepEqual(result, {a: 1, c: 3}, 'can restrict properties to those named');
- result = _.pick({a: 1, b: 2, c: 3}, ['b', 'c']);
- assert.deepEqual(result, {b: 2, c: 3}, 'can restrict properties to those named in an array');
- result = _.pick({a: 1, b: 2, c: 3}, ['a'], 'b');
- assert.deepEqual(result, {a: 1, b: 2}, 'can restrict properties to those named in mixed args');
- result = _.pick(['a', 'b'], 1);
- assert.deepEqual(result, {1: 'b'}, 'can pick numeric properties');
-
- _.each([null, void 0], function(val) {
- assert.deepEqual(_.pick(val, 'hasOwnProperty'), {}, 'Called with null/undefined');
- assert.deepEqual(_.pick(val, _.constant(true)), {});
- });
- assert.deepEqual(_.pick(5, 'toString', 'b'), {toString: Number.prototype.toString}, 'can iterate primitives');
-
- var data = {a: 1, b: 2, c: 3};
- var callback = function(value, key, object) {
- assert.strictEqual(key, {1: 'a', 2: 'b', 3: 'c'}[value]);
- assert.strictEqual(object, data);
- return value !== this.value;
- };
- result = _.pick(data, callback, {value: 2});
- assert.deepEqual(result, {a: 1, c: 3}, 'can accept a predicate and context');
-
- var Obj = function(){};
- Obj.prototype = {a: 1, b: 2, c: 3};
- var instance = new Obj();
- assert.deepEqual(_.pick(instance, 'a', 'c'), {a: 1, c: 3}, 'include prototype props');
-
- assert.deepEqual(_.pick(data, function(val, key) {
- return this[key] === 3 && this === instance;
- }, instance), {c: 3}, 'function is given context');
-
- assert.ok(!_.has(_.pick({}, 'foo'), 'foo'), 'does not set own property if property not in object');
- _.pick(data, function(value, key, obj) {
- assert.equal(obj, data, 'passes same object as third parameter of iteratee');
- });
- });
-
- QUnit.test('omit', function(assert) {
- var result;
- result = _.omit({a: 1, b: 2, c: 3}, 'b');
- assert.deepEqual(result, {a: 1, c: 3}, 'can omit a single named property');
- result = _.omit({a: 1, b: 2, c: 3}, 'a', 'c');
- assert.deepEqual(result, {b: 2}, 'can omit several named properties');
- result = _.omit({a: 1, b: 2, c: 3}, ['b', 'c']);
- assert.deepEqual(result, {a: 1}, 'can omit properties named in an array');
- result = _.omit(['a', 'b'], 0);
- assert.deepEqual(result, {1: 'b'}, 'can omit numeric properties');
-
- assert.deepEqual(_.omit(null, 'a', 'b'), {}, 'non objects return empty object');
- assert.deepEqual(_.omit(void 0, 'toString'), {}, 'null/undefined return empty object');
- assert.deepEqual(_.omit(5, 'toString', 'b'), {}, 'returns empty object for primitives');
-
- var data = {a: 1, b: 2, c: 3};
- var callback = function(value, key, object) {
- assert.strictEqual(key, {1: 'a', 2: 'b', 3: 'c'}[value]);
- assert.strictEqual(object, data);
- return value !== this.value;
- };
- result = _.omit(data, callback, {value: 2});
- assert.deepEqual(result, {b: 2}, 'can accept a predicate');
-
- var Obj = function(){};
- Obj.prototype = {a: 1, b: 2, c: 3};
- var instance = new Obj();
- assert.deepEqual(_.omit(instance, 'b'), {a: 1, c: 3}, 'include prototype props');
-
- assert.deepEqual(_.omit(data, function(val, key) {
- return this[key] === 3 && this === instance;
- }, instance), {a: 1, b: 2}, 'function is given context');
- });
-
- QUnit.test('defaults', function(assert) {
- var options = {zero: 0, one: 1, empty: '', nan: NaN, nothing: null};
-
- _.defaults(options, {zero: 1, one: 10, twenty: 20, nothing: 'str'});
- assert.equal(options.zero, 0, 'value exists');
- assert.equal(options.one, 1, 'value exists');
- assert.equal(options.twenty, 20, 'default applied');
- assert.equal(options.nothing, null, "null isn't overridden");
-
- _.defaults(options, {empty: 'full'}, {nan: 'nan'}, {word: 'word'}, {word: 'dog'});
- assert.equal(options.empty, '', 'value exists');
- assert.ok(_.isNaN(options.nan), "NaN isn't overridden");
- assert.equal(options.word, 'word', 'new value is added, first one wins');
-
- try {
- options = {};
- _.defaults(options, null, void 0, {a: 1});
- } catch (e) { /* ignored */ }
-
- assert.equal(options.a, 1, 'should not error on `null` or `undefined` sources');
-
- assert.deepEqual(_.defaults(null, {a: 1}), {a: 1}, 'defaults skips nulls');
- assert.deepEqual(_.defaults(void 0, {a: 1}), {a: 1}, 'defaults skips undefined');
- });
-
- QUnit.test('clone', function(assert) {
- var moe = {name: 'moe', lucky: [13, 27, 34]};
- var clone = _.clone(moe);
- assert.equal(clone.name, 'moe', 'the clone as the attributes of the original');
-
- clone.name = 'curly';
- assert.ok(clone.name === 'curly' && moe.name === 'moe', 'clones can change shallow attributes without affecting the original');
-
- clone.lucky.push(101);
- assert.equal(_.last(moe.lucky), 101, 'changes to deep attributes are shared with the original');
-
- assert.equal(_.clone(void 0), void 0, 'non objects should not be changed by clone');
- assert.equal(_.clone(1), 1, 'non objects should not be changed by clone');
- assert.equal(_.clone(null), null, 'non objects should not be changed by clone');
- });
-
- QUnit.test('create', function(assert) {
- var Parent = function() {};
- Parent.prototype = {foo: function() {}, bar: 2};
-
- _.each(['foo', null, void 0, 1], function(val) {
- assert.deepEqual(_.create(val), {}, 'should return empty object when a non-object is provided');
- });
-
- assert.ok(_.create([]) instanceof Array, 'should return new instance of array when array is provided');
-
- var Child = function() {};
- Child.prototype = _.create(Parent.prototype);
- assert.ok(new Child instanceof Parent, 'object should inherit prototype');
-
- var func = function() {};
- Child.prototype = _.create(Parent.prototype, {func: func});
- assert.strictEqual(Child.prototype.func, func, 'properties should be added to object');
-
- Child.prototype = _.create(Parent.prototype, {constructor: Child});
- assert.strictEqual(Child.prototype.constructor, Child);
-
- Child.prototype.foo = 'foo';
- var created = _.create(Child.prototype, new Child);
- assert.ok(!created.hasOwnProperty('foo'), 'should only add own properties');
- });
-
- QUnit.test('isEqual', function(assert) {
- function First() {
- this.value = 1;
- }
- First.prototype.value = 1;
- function Second() {
- this.value = 1;
- }
- Second.prototype.value = 2;
-
- // Basic equality and identity comparisons.
- assert.ok(_.isEqual(null, null), '`null` is equal to `null`');
- assert.ok(_.isEqual(), '`undefined` is equal to `undefined`');
-
- assert.ok(!_.isEqual(0, -0), '`0` is not equal to `-0`');
- assert.ok(!_.isEqual(-0, 0), 'Commutative equality is implemented for `0` and `-0`');
- assert.ok(!_.isEqual(null, void 0), '`null` is not equal to `undefined`');
- assert.ok(!_.isEqual(void 0, null), 'Commutative equality is implemented for `null` and `undefined`');
-
- // String object and primitive comparisons.
- assert.ok(_.isEqual('Curly', 'Curly'), 'Identical string primitives are equal');
- assert.ok(_.isEqual(new String('Curly'), new String('Curly')), 'String objects with identical primitive values are equal');
- assert.ok(_.isEqual(new String('Curly'), 'Curly'), 'String primitives and their corresponding object wrappers are equal');
- assert.ok(_.isEqual('Curly', new String('Curly')), 'Commutative equality is implemented for string objects and primitives');
-
- assert.ok(!_.isEqual('Curly', 'Larry'), 'String primitives with different values are not equal');
- assert.ok(!_.isEqual(new String('Curly'), new String('Larry')), 'String objects with different primitive values are not equal');
- assert.ok(!_.isEqual(new String('Curly'), {toString: function(){ return 'Curly'; }}), 'String objects and objects with a custom `toString` method are not equal');
-
- // Number object and primitive comparisons.
- assert.ok(_.isEqual(75, 75), 'Identical number primitives are equal');
- assert.ok(_.isEqual(new Number(75), new Number(75)), 'Number objects with identical primitive values are equal');
- assert.ok(_.isEqual(75, new Number(75)), 'Number primitives and their corresponding object wrappers are equal');
- assert.ok(_.isEqual(new Number(75), 75), 'Commutative equality is implemented for number objects and primitives');
- assert.ok(!_.isEqual(new Number(0), -0), '`new Number(0)` and `-0` are not equal');
- assert.ok(!_.isEqual(0, new Number(-0)), 'Commutative equality is implemented for `new Number(0)` and `-0`');
-
- assert.ok(!_.isEqual(new Number(75), new Number(63)), 'Number objects with different primitive values are not equal');
- assert.ok(!_.isEqual(new Number(63), {valueOf: function(){ return 63; }}), 'Number objects and objects with a `valueOf` method are not equal');
-
- // Comparisons involving `NaN`.
- assert.ok(_.isEqual(NaN, NaN), '`NaN` is equal to `NaN`');
- assert.ok(_.isEqual(new Number(NaN), NaN), 'Object(`NaN`) is equal to `NaN`');
- assert.ok(!_.isEqual(61, NaN), 'A number primitive is not equal to `NaN`');
- assert.ok(!_.isEqual(new Number(79), NaN), 'A number object is not equal to `NaN`');
- assert.ok(!_.isEqual(Infinity, NaN), '`Infinity` is not equal to `NaN`');
-
- // Boolean object and primitive comparisons.
- assert.ok(_.isEqual(true, true), 'Identical boolean primitives are equal');
- assert.ok(_.isEqual(new Boolean, new Boolean), 'Boolean objects with identical primitive values are equal');
- assert.ok(_.isEqual(true, new Boolean(true)), 'Boolean primitives and their corresponding object wrappers are equal');
- assert.ok(_.isEqual(new Boolean(true), true), 'Commutative equality is implemented for booleans');
- assert.ok(!_.isEqual(new Boolean(true), new Boolean), 'Boolean objects with different primitive values are not equal');
-
- // Common type coercions.
- assert.ok(!_.isEqual(new Boolean(false), true), '`new Boolean(false)` is not equal to `true`');
- assert.ok(!_.isEqual('75', 75), 'String and number primitives with like values are not equal');
- assert.ok(!_.isEqual(new Number(63), new String(63)), 'String and number objects with like values are not equal');
- assert.ok(!_.isEqual(75, '75'), 'Commutative equality is implemented for like string and number values');
- assert.ok(!_.isEqual(0, ''), 'Number and string primitives with like values are not equal');
- assert.ok(!_.isEqual(1, true), 'Number and boolean primitives with like values are not equal');
- assert.ok(!_.isEqual(new Boolean(false), new Number(0)), 'Boolean and number objects with like values are not equal');
- assert.ok(!_.isEqual(false, new String('')), 'Boolean primitives and string objects with like values are not equal');
- assert.ok(!_.isEqual(12564504e5, new Date(2009, 9, 25)), 'Dates and their corresponding numeric primitive values are not equal');
-
- // Dates.
- assert.ok(_.isEqual(new Date(2009, 9, 25), new Date(2009, 9, 25)), 'Date objects referencing identical times are equal');
- assert.ok(!_.isEqual(new Date(2009, 9, 25), new Date(2009, 11, 13)), 'Date objects referencing different times are not equal');
- assert.ok(!_.isEqual(new Date(2009, 11, 13), {
- getTime: function(){
- return 12606876e5;
- }
- }), 'Date objects and objects with a `getTime` method are not equal');
- assert.ok(!_.isEqual(new Date('Curly'), new Date('Curly')), 'Invalid dates are not equal');
-
- // Functions.
- assert.ok(!_.isEqual(First, Second), 'Different functions with identical bodies and source code representations are not equal');
-
- // RegExps.
- assert.ok(_.isEqual(/(?:)/gim, /(?:)/gim), 'RegExps with equivalent patterns and flags are equal');
- assert.ok(_.isEqual(/(?:)/gi, /(?:)/ig), 'Flag order is not significant');
- assert.ok(!_.isEqual(/(?:)/g, /(?:)/gi), 'RegExps with equivalent patterns and different flags are not equal');
- assert.ok(!_.isEqual(/Moe/gim, /Curly/gim), 'RegExps with different patterns and equivalent flags are not equal');
- assert.ok(!_.isEqual(/(?:)/gi, /(?:)/g), 'Commutative equality is implemented for RegExps');
- assert.ok(!_.isEqual(/Curly/g, {source: 'Larry', global: true, ignoreCase: false, multiline: false}), 'RegExps and RegExp-like objects are not equal');
-
- // Empty arrays, array-like objects, and object literals.
- assert.ok(_.isEqual({}, {}), 'Empty object literals are equal');
- assert.ok(_.isEqual([], []), 'Empty array literals are equal');
- assert.ok(_.isEqual([{}], [{}]), 'Empty nested arrays and objects are equal');
- assert.ok(!_.isEqual({length: 0}, []), 'Array-like objects and arrays are not equal.');
- assert.ok(!_.isEqual([], {length: 0}), 'Commutative equality is implemented for array-like objects');
-
- assert.ok(!_.isEqual({}, []), 'Object literals and array literals are not equal');
- assert.ok(!_.isEqual([], {}), 'Commutative equality is implemented for objects and arrays');
-
- // Arrays with primitive and object values.
- assert.ok(_.isEqual([1, 'Larry', true], [1, 'Larry', true]), 'Arrays containing identical primitives are equal');
- assert.ok(_.isEqual([/Moe/g, new Date(2009, 9, 25)], [/Moe/g, new Date(2009, 9, 25)]), 'Arrays containing equivalent elements are equal');
-
- // Multi-dimensional arrays.
- var a = [new Number(47), false, 'Larry', /Moe/, new Date(2009, 11, 13), ['running', 'biking', new String('programming')], {a: 47}];
- var b = [new Number(47), false, 'Larry', /Moe/, new Date(2009, 11, 13), ['running', 'biking', new String('programming')], {a: 47}];
- assert.ok(_.isEqual(a, b), 'Arrays containing nested arrays and objects are recursively compared');
-
- // Overwrite the methods defined in ES 5.1 section 15.4.4.
- a.forEach = a.map = a.filter = a.every = a.indexOf = a.lastIndexOf = a.some = a.reduce = a.reduceRight = null;
- b.join = b.pop = b.reverse = b.shift = b.slice = b.splice = b.concat = b.sort = b.unshift = null;
-
- // Array elements and properties.
- assert.ok(_.isEqual(a, b), 'Arrays containing equivalent elements and different non-numeric properties are equal');
- a.push('White Rocks');
- assert.ok(!_.isEqual(a, b), 'Arrays of different lengths are not equal');
- a.push('East Boulder');
- b.push('Gunbarrel Ranch', 'Teller Farm');
- assert.ok(!_.isEqual(a, b), 'Arrays of identical lengths containing different elements are not equal');
-
- // Sparse arrays.
- assert.ok(_.isEqual(Array(3), Array(3)), 'Sparse arrays of identical lengths are equal');
- assert.ok(!_.isEqual(Array(3), Array(6)), 'Sparse arrays of different lengths are not equal when both are empty');
-
- var sparse = [];
- sparse[1] = 5;
- assert.ok(_.isEqual(sparse, [void 0, 5]), 'Handles sparse arrays as dense');
-
- // Simple objects.
- assert.ok(_.isEqual({a: 'Curly', b: 1, c: true}, {a: 'Curly', b: 1, c: true}), 'Objects containing identical primitives are equal');
- assert.ok(_.isEqual({a: /Curly/g, b: new Date(2009, 11, 13)}, {a: /Curly/g, b: new Date(2009, 11, 13)}), 'Objects containing equivalent members are equal');
- assert.ok(!_.isEqual({a: 63, b: 75}, {a: 61, b: 55}), 'Objects of identical sizes with different values are not equal');
- assert.ok(!_.isEqual({a: 63, b: 75}, {a: 61, c: 55}), 'Objects of identical sizes with different property names are not equal');
- assert.ok(!_.isEqual({a: 1, b: 2}, {a: 1}), 'Objects of different sizes are not equal');
- assert.ok(!_.isEqual({a: 1}, {a: 1, b: 2}), 'Commutative equality is implemented for objects');
- assert.ok(!_.isEqual({x: 1, y: void 0}, {x: 1, z: 2}), 'Objects with identical keys and different values are not equivalent');
-
- // `A` contains nested objects and arrays.
- a = {
- name: new String('Moe Howard'),
- age: new Number(77),
- stooge: true,
- hobbies: ['acting'],
- film: {
- name: 'Sing a Song of Six Pants',
- release: new Date(1947, 9, 30),
- stars: [new String('Larry Fine'), 'Shemp Howard'],
- minutes: new Number(16),
- seconds: 54
- }
- };
-
- // `B` contains equivalent nested objects and arrays.
- b = {
- name: new String('Moe Howard'),
- age: new Number(77),
- stooge: true,
- hobbies: ['acting'],
- film: {
- name: 'Sing a Song of Six Pants',
- release: new Date(1947, 9, 30),
- stars: [new String('Larry Fine'), 'Shemp Howard'],
- minutes: new Number(16),
- seconds: 54
- }
- };
- assert.ok(_.isEqual(a, b), 'Objects with nested equivalent members are recursively compared');
-
- // Instances.
- assert.ok(_.isEqual(new First, new First), 'Object instances are equal');
- assert.ok(!_.isEqual(new First, new Second), 'Objects with different constructors and identical own properties are not equal');
- assert.ok(!_.isEqual({value: 1}, new First), 'Object instances and objects sharing equivalent properties are not equal');
- assert.ok(!_.isEqual({value: 2}, new Second), 'The prototype chain of objects should not be examined');
-
- // Circular Arrays.
- (a = []).push(a);
- (b = []).push(b);
- assert.ok(_.isEqual(a, b), 'Arrays containing circular references are equal');
- a.push(new String('Larry'));
- b.push(new String('Larry'));
- assert.ok(_.isEqual(a, b), 'Arrays containing circular references and equivalent properties are equal');
- a.push('Shemp');
- b.push('Curly');
- assert.ok(!_.isEqual(a, b), 'Arrays containing circular references and different properties are not equal');
-
- // More circular arrays #767.
- a = ['everything is checked but', 'this', 'is not'];
- a[1] = a;
- b = ['everything is checked but', ['this', 'array'], 'is not'];
- assert.ok(!_.isEqual(a, b), 'Comparison of circular references with non-circular references are not equal');
-
- // Circular Objects.
- a = {abc: null};
- b = {abc: null};
- a.abc = a;
- b.abc = b;
- assert.ok(_.isEqual(a, b), 'Objects containing circular references are equal');
- a.def = 75;
- b.def = 75;
- assert.ok(_.isEqual(a, b), 'Objects containing circular references and equivalent properties are equal');
- a.def = new Number(75);
- b.def = new Number(63);
- assert.ok(!_.isEqual(a, b), 'Objects containing circular references and different properties are not equal');
-
- // More circular objects #767.
- a = {everything: 'is checked', but: 'this', is: 'not'};
- a.but = a;
- b = {everything: 'is checked', but: {that: 'object'}, is: 'not'};
- assert.ok(!_.isEqual(a, b), 'Comparison of circular references with non-circular object references are not equal');
-
- // Cyclic Structures.
- a = [{abc: null}];
- b = [{abc: null}];
- (a[0].abc = a).push(a);
- (b[0].abc = b).push(b);
- assert.ok(_.isEqual(a, b), 'Cyclic structures are equal');
- a[0].def = 'Larry';
- b[0].def = 'Larry';
- assert.ok(_.isEqual(a, b), 'Cyclic structures containing equivalent properties are equal');
- a[0].def = new String('Larry');
- b[0].def = new String('Curly');
- assert.ok(!_.isEqual(a, b), 'Cyclic structures containing different properties are not equal');
-
- // Complex Circular References.
- a = {foo: {b: {foo: {c: {foo: null}}}}};
- b = {foo: {b: {foo: {c: {foo: null}}}}};
- a.foo.b.foo.c.foo = a;
- b.foo.b.foo.c.foo = b;
- assert.ok(_.isEqual(a, b), 'Cyclic structures with nested and identically-named properties are equal');
-
- // Chaining.
- assert.ok(!_.isEqual(_({x: 1, y: void 0}).chain(), _({x: 1, z: 2}).chain()), 'Chained objects containing different values are not equal');
-
- a = _({x: 1, y: 2}).chain();
- b = _({x: 1, y: 2}).chain();
- assert.equal(_.isEqual(a.isEqual(b), _(true)), true, '`isEqual` can be chained');
-
- // Objects without a `constructor` property
- if (Object.create) {
- a = Object.create(null, {x: {value: 1, enumerable: true}});
- b = {x: 1};
- assert.ok(_.isEqual(a, b), 'Handles objects without a constructor (e.g. from Object.create');
- }
-
- function Foo() { this.a = 1; }
- Foo.prototype.constructor = null;
-
- var other = {a: 1};
- assert.strictEqual(_.isEqual(new Foo, other), false, 'Objects from different constructors are not equal');
-
-
- // Tricky object cases val comparisions
- assert.equal(_.isEqual([0], [-0]), false);
- assert.equal(_.isEqual({a: 0}, {a: -0}), false);
- assert.equal(_.isEqual([NaN], [NaN]), true);
- assert.equal(_.isEqual({a: NaN}, {a: NaN}), true);
-
- if (typeof Symbol !== 'undefined') {
- var symbol = Symbol('x');
- assert.strictEqual(_.isEqual(symbol, symbol), true, 'A symbol is equal to itself');
- assert.strictEqual(_.isEqual(symbol, Object(symbol)), true, 'Even when wrapped in Object()');
- assert.strictEqual(_.isEqual(symbol, null), false, 'Different types are not equal');
- }
-
- });
-
- QUnit.test('isEmpty', function(assert) {
- assert.ok(!_([1]).isEmpty(), '[1] is not empty');
- assert.ok(_.isEmpty([]), '[] is empty');
- assert.ok(!_.isEmpty({one: 1}), '{one: 1} is not empty');
- assert.ok(_.isEmpty({}), '{} is empty');
- assert.ok(_.isEmpty(new RegExp('')), 'objects with prototype properties are empty');
- assert.ok(_.isEmpty(null), 'null is empty');
- assert.ok(_.isEmpty(), 'undefined is empty');
- assert.ok(_.isEmpty(''), 'the empty string is empty');
- assert.ok(!_.isEmpty('moe'), 'but other strings are not');
-
- var obj = {one: 1};
- delete obj.one;
- assert.ok(_.isEmpty(obj), 'deleting all the keys from an object empties it');
-
- var args = function(){ return arguments; };
- assert.ok(_.isEmpty(args()), 'empty arguments object is empty');
- assert.ok(!_.isEmpty(args('')), 'non-empty arguments object is not empty');
-
- // covers collecting non-enumerable properties in IE < 9
- var nonEnumProp = {toString: 5};
- assert.ok(!_.isEmpty(nonEnumProp), 'non-enumerable property is not empty');
- });
-
- if (typeof document === 'object') {
- QUnit.test('isElement', function(assert) {
- assert.ok(!_.isElement('div'), 'strings are not dom elements');
- assert.ok(_.isElement(testElement), 'an element is a DOM element');
- });
- }
-
- QUnit.test('isArguments', function(assert) {
- var args = (function(){ return arguments; }(1, 2, 3));
- assert.ok(!_.isArguments('string'), 'a string is not an arguments object');
- assert.ok(!_.isArguments(_.isArguments), 'a function is not an arguments object');
- assert.ok(_.isArguments(args), 'but the arguments object is an arguments object');
- assert.ok(!_.isArguments(_.toArray(args)), 'but not when it\'s converted into an array');
- assert.ok(!_.isArguments([1, 2, 3]), 'and not vanilla arrays.');
- });
-
- QUnit.test('isObject', function(assert) {
- assert.ok(_.isObject(arguments), 'the arguments object is object');
- assert.ok(_.isObject([1, 2, 3]), 'and arrays');
- if (testElement) {
- assert.ok(_.isObject(testElement), 'and DOM element');
- }
- assert.ok(_.isObject(function() {}), 'and functions');
- assert.ok(!_.isObject(null), 'but not null');
- assert.ok(!_.isObject(void 0), 'and not undefined');
- assert.ok(!_.isObject('string'), 'and not string');
- assert.ok(!_.isObject(12), 'and not number');
- assert.ok(!_.isObject(true), 'and not boolean');
- assert.ok(_.isObject(new String('string')), 'but new String()');
- });
-
- QUnit.test('isArray', function(assert) {
- assert.ok(!_.isArray(void 0), 'undefined vars are not arrays');
- assert.ok(!_.isArray(arguments), 'the arguments object is not an array');
- assert.ok(_.isArray([1, 2, 3]), 'but arrays are');
- });
-
- QUnit.test('isString', function(assert) {
- var obj = new String('I am a string object');
- if (testElement) {
- assert.ok(!_.isString(testElement), 'an element is not a string');
- }
- assert.ok(_.isString([1, 2, 3].join(', ')), 'but strings are');
- assert.strictEqual(_.isString('I am a string literal'), true, 'string literals are');
- assert.ok(_.isString(obj), 'so are String objects');
- assert.strictEqual(_.isString(1), false);
- });
-
- QUnit.test('isSymbol', function(assert) {
- assert.ok(!_.isSymbol(0), 'numbers are not symbols');
- assert.ok(!_.isSymbol(''), 'strings are not symbols');
- assert.ok(!_.isSymbol(_.isSymbol), 'functions are not symbols');
- if (typeof Symbol === 'function') {
- assert.ok(_.isSymbol(Symbol()), 'symbols are symbols');
- assert.ok(_.isSymbol(Symbol('description')), 'described symbols are symbols');
- assert.ok(_.isSymbol(Object(Symbol())), 'boxed symbols are symbols');
- }
- });
-
- QUnit.test('isNumber', function(assert) {
- assert.ok(!_.isNumber('string'), 'a string is not a number');
- assert.ok(!_.isNumber(arguments), 'the arguments object is not a number');
- assert.ok(!_.isNumber(void 0), 'undefined is not a number');
- assert.ok(_.isNumber(3 * 4 - 7 / 10), 'but numbers are');
- assert.ok(_.isNumber(NaN), 'NaN *is* a number');
- assert.ok(_.isNumber(Infinity), 'Infinity is a number');
- assert.ok(!_.isNumber('1'), 'numeric strings are not numbers');
- });
-
- QUnit.test('isBoolean', function(assert) {
- assert.ok(!_.isBoolean(2), 'a number is not a boolean');
- assert.ok(!_.isBoolean('string'), 'a string is not a boolean');
- assert.ok(!_.isBoolean('false'), 'the string "false" is not a boolean');
- assert.ok(!_.isBoolean('true'), 'the string "true" is not a boolean');
- assert.ok(!_.isBoolean(arguments), 'the arguments object is not a boolean');
- assert.ok(!_.isBoolean(void 0), 'undefined is not a boolean');
- assert.ok(!_.isBoolean(NaN), 'NaN is not a boolean');
- assert.ok(!_.isBoolean(null), 'null is not a boolean');
- assert.ok(_.isBoolean(true), 'but true is');
- assert.ok(_.isBoolean(false), 'and so is false');
- });
-
- QUnit.test('isMap', function(assert) {
- assert.ok(!_.isMap('string'), 'a string is not a map');
- assert.ok(!_.isMap(2), 'a number is not a map');
- assert.ok(!_.isMap({}), 'an object is not a map');
- assert.ok(!_.isMap(false), 'a boolean is not a map');
- assert.ok(!_.isMap(void 0), 'undefined is not a map');
- assert.ok(!_.isMap([1, 2, 3]), 'an array is not a map');
- if (typeof Set === 'function') {
- assert.ok(!_.isMap(new Set()), 'a set is not a map');
- }
- if (typeof WeakSet === 'function') {
- assert.ok(!_.isMap(new WeakSet()), 'a weakset is not a map');
- }
- if (typeof WeakMap === 'function') {
- assert.ok(!_.isMap(new WeakMap()), 'a weakmap is not a map');
- }
- if (typeof Map === 'function') {
- var keyString = 'a string';
- var obj = new Map();
- obj.set(keyString, 'value');
- assert.ok(_.isMap(obj), 'but a map is');
- }
- });
-
- QUnit.test('isWeakMap', function(assert) {
- assert.ok(!_.isWeakMap('string'), 'a string is not a weakmap');
- assert.ok(!_.isWeakMap(2), 'a number is not a weakmap');
- assert.ok(!_.isWeakMap({}), 'an object is not a weakmap');
- assert.ok(!_.isWeakMap(false), 'a boolean is not a weakmap');
- assert.ok(!_.isWeakMap(void 0), 'undefined is not a weakmap');
- assert.ok(!_.isWeakMap([1, 2, 3]), 'an array is not a weakmap');
- if (typeof Set === 'function') {
- assert.ok(!_.isWeakMap(new Set()), 'a set is not a weakmap');
- }
- if (typeof WeakSet === 'function') {
- assert.ok(!_.isWeakMap(new WeakSet()), 'a weakset is not a weakmap');
- }
- if (typeof Map === 'function') {
- assert.ok(!_.isWeakMap(new Map()), 'a map is not a weakmap');
- }
- if (typeof WeakMap === 'function') {
- var keyObj = {}, obj = new WeakMap();
- obj.set(keyObj, 'value');
- assert.ok(_.isWeakMap(obj), 'but a weakmap is');
- }
- });
-
- QUnit.test('isSet', function(assert) {
- assert.ok(!_.isSet('string'), 'a string is not a set');
- assert.ok(!_.isSet(2), 'a number is not a set');
- assert.ok(!_.isSet({}), 'an object is not a set');
- assert.ok(!_.isSet(false), 'a boolean is not a set');
- assert.ok(!_.isSet(void 0), 'undefined is not a set');
- assert.ok(!_.isSet([1, 2, 3]), 'an array is not a set');
- if (typeof Map === 'function') {
- assert.ok(!_.isSet(new Map()), 'a map is not a set');
- }
- if (typeof WeakMap === 'function') {
- assert.ok(!_.isSet(new WeakMap()), 'a weakmap is not a set');
- }
- if (typeof WeakSet === 'function') {
- assert.ok(!_.isSet(new WeakSet()), 'a weakset is not a set');
- }
- if (typeof Set === 'function') {
- var obj = new Set();
- obj.add(1).add('string').add(false).add({});
- assert.ok(_.isSet(obj), 'but a set is');
- }
- });
-
- QUnit.test('isWeakSet', function(assert) {
-
- assert.ok(!_.isWeakSet('string'), 'a string is not a weakset');
- assert.ok(!_.isWeakSet(2), 'a number is not a weakset');
- assert.ok(!_.isWeakSet({}), 'an object is not a weakset');
- assert.ok(!_.isWeakSet(false), 'a boolean is not a weakset');
- assert.ok(!_.isWeakSet(void 0), 'undefined is not a weakset');
- assert.ok(!_.isWeakSet([1, 2, 3]), 'an array is not a weakset');
- if (typeof Map === 'function') {
- assert.ok(!_.isWeakSet(new Map()), 'a map is not a weakset');
- }
- if (typeof WeakMap === 'function') {
- assert.ok(!_.isWeakSet(new WeakMap()), 'a weakmap is not a weakset');
- }
- if (typeof Set === 'function') {
- assert.ok(!_.isWeakSet(new Set()), 'a set is not a weakset');
- }
- if (typeof WeakSet === 'function') {
- var obj = new WeakSet();
- obj.add({x: 1}, {y: 'string'}).add({y: 'string'}).add({z: [1, 2, 3]});
- assert.ok(_.isWeakSet(obj), 'but a weakset is');
- }
- });
-
- QUnit.test('isFunction', function(assert) {
- assert.ok(!_.isFunction(void 0), 'undefined vars are not functions');
- assert.ok(!_.isFunction([1, 2, 3]), 'arrays are not functions');
- assert.ok(!_.isFunction('moe'), 'strings are not functions');
- assert.ok(_.isFunction(_.isFunction), 'but functions are');
- assert.ok(_.isFunction(function(){}), 'even anonymous ones');
-
- if (testElement) {
- assert.ok(!_.isFunction(testElement), 'elements are not functions');
- }
-
- var nodelist = typeof document != 'undefined' && document.childNodes;
- if (nodelist) {
- assert.ok(!_.isFunction(nodelist));
- }
- });
-
- if (typeof Int8Array !== 'undefined') {
- QUnit.test('#1929 Typed Array constructors are functions', function(assert) {
- _.chain(['Float32Array', 'Float64Array', 'Int8Array', 'Int16Array', 'Int32Array', 'Uint8Array', 'Uint8ClampedArray', 'Uint16Array', 'Uint32Array'])
- .map(_.propertyOf(typeof GLOBAL != 'undefined' ? GLOBAL : window))
- .compact()
- .each(function(TypedArray) {
- // PhantomJS reports `typeof UInt8Array == 'object'` and doesn't report toString TypeArray
- // as a function
- assert.strictEqual(_.isFunction(TypedArray), Object.prototype.toString.call(TypedArray) === '[object Function]');
- });
- });
- }
-
- QUnit.test('isDate', function(assert) {
- assert.ok(!_.isDate(100), 'numbers are not dates');
- assert.ok(!_.isDate({}), 'objects are not dates');
- assert.ok(_.isDate(new Date()), 'but dates are');
- });
-
- QUnit.test('isRegExp', function(assert) {
- assert.ok(!_.isRegExp(_.identity), 'functions are not RegExps');
- assert.ok(_.isRegExp(/identity/), 'but RegExps are');
- });
-
- QUnit.test('isFinite', function(assert) {
- assert.ok(!_.isFinite(void 0), 'undefined is not finite');
- assert.ok(!_.isFinite(null), 'null is not finite');
- assert.ok(!_.isFinite(NaN), 'NaN is not finite');
- assert.ok(!_.isFinite(Infinity), 'Infinity is not finite');
- assert.ok(!_.isFinite(-Infinity), '-Infinity is not finite');
- assert.ok(_.isFinite('12'), 'Numeric strings are numbers');
- assert.ok(!_.isFinite('1a'), 'Non numeric strings are not numbers');
- assert.ok(!_.isFinite(''), 'Empty strings are not numbers');
- var obj = new Number(5);
- assert.ok(_.isFinite(obj), 'Number instances can be finite');
- assert.ok(_.isFinite(0), '0 is finite');
- assert.ok(_.isFinite(123), 'Ints are finite');
- assert.ok(_.isFinite(-12.44), 'Floats are finite');
- if (typeof Symbol === 'function') {
- assert.ok(!_.isFinite(Symbol()), 'symbols are not numbers');
- assert.ok(!_.isFinite(Symbol('description')), 'described symbols are not numbers');
- assert.ok(!_.isFinite(Object(Symbol())), 'boxed symbols are not numbers');
- }
- });
-
- QUnit.test('isNaN', function(assert) {
- assert.ok(!_.isNaN(void 0), 'undefined is not NaN');
- assert.ok(!_.isNaN(null), 'null is not NaN');
- assert.ok(!_.isNaN(0), '0 is not NaN');
- assert.ok(!_.isNaN(new Number(0)), 'wrapped 0 is not NaN');
- assert.ok(_.isNaN(NaN), 'but NaN is');
- assert.ok(_.isNaN(new Number(NaN)), 'wrapped NaN is still NaN');
- });
-
- QUnit.test('isNull', function(assert) {
- assert.ok(!_.isNull(void 0), 'undefined is not null');
- assert.ok(!_.isNull(NaN), 'NaN is not null');
- assert.ok(_.isNull(null), 'but null is');
- });
-
- QUnit.test('isUndefined', function(assert) {
- assert.ok(!_.isUndefined(1), 'numbers are defined');
- assert.ok(!_.isUndefined(null), 'null is defined');
- assert.ok(!_.isUndefined(false), 'false is defined');
- assert.ok(!_.isUndefined(NaN), 'NaN is defined');
- assert.ok(_.isUndefined(), 'nothing is undefined');
- assert.ok(_.isUndefined(void 0), 'undefined is undefined');
- });
-
- QUnit.test('isError', function(assert) {
- assert.ok(!_.isError(1), 'numbers are not Errors');
- assert.ok(!_.isError(null), 'null is not an Error');
- assert.ok(!_.isError(Error), 'functions are not Errors');
- assert.ok(_.isError(new Error()), 'Errors are Errors');
- assert.ok(_.isError(new EvalError()), 'EvalErrors are Errors');
- assert.ok(_.isError(new RangeError()), 'RangeErrors are Errors');
- assert.ok(_.isError(new ReferenceError()), 'ReferenceErrors are Errors');
- assert.ok(_.isError(new SyntaxError()), 'SyntaxErrors are Errors');
- assert.ok(_.isError(new TypeError()), 'TypeErrors are Errors');
- assert.ok(_.isError(new URIError()), 'URIErrors are Errors');
- });
-
- QUnit.test('tap', function(assert) {
- var intercepted = null;
- var interceptor = function(obj) { intercepted = obj; };
- var returned = _.tap(1, interceptor);
- assert.equal(intercepted, 1, 'passes tapped object to interceptor');
- assert.equal(returned, 1, 'returns tapped object');
-
- returned = _([1, 2, 3]).chain().
- map(function(n){ return n * 2; }).
- max().
- tap(interceptor).
- value();
- assert.equal(returned, 6, 'can use tapped objects in a chain');
- assert.equal(intercepted, returned, 'can use tapped objects in a chain');
- });
-
- QUnit.test('has', function(assert) {
- var obj = {foo: 'bar', func: function(){}};
- assert.ok(_.has(obj, 'foo'), 'has() checks that the object has a property.');
- assert.ok(!_.has(obj, 'baz'), "has() returns false if the object doesn't have the property.");
- assert.ok(_.has(obj, 'func'), 'has() works for functions too.');
- obj.hasOwnProperty = null;
- assert.ok(_.has(obj, 'foo'), 'has() works even when the hasOwnProperty method is deleted.');
- var child = {};
- child.prototype = obj;
- assert.ok(!_.has(child, 'foo'), 'has() does not check the prototype chain for a property.');
- assert.strictEqual(_.has(null, 'foo'), false, 'has() returns false for null');
- assert.strictEqual(_.has(void 0, 'foo'), false, 'has() returns false for undefined');
- });
-
- QUnit.test('isMatch', function(assert) {
- var moe = {name: 'Moe Howard', hair: true};
- var curly = {name: 'Curly Howard', hair: false};
-
- assert.equal(_.isMatch(moe, {hair: true}), true, 'Returns a boolean');
- assert.equal(_.isMatch(curly, {hair: true}), false, 'Returns a boolean');
-
- assert.equal(_.isMatch(5, {__x__: void 0}), false, 'can match undefined props on primitives');
- assert.equal(_.isMatch({__x__: void 0}, {__x__: void 0}), true, 'can match undefined props');
-
- assert.equal(_.isMatch(null, {}), true, 'Empty spec called with null object returns true');
- assert.equal(_.isMatch(null, {a: 1}), false, 'Non-empty spec called with null object returns false');
-
- _.each([null, void 0], function(item) { assert.strictEqual(_.isMatch(item, null), true, 'null matches null'); });
- _.each([null, void 0], function(item) { assert.strictEqual(_.isMatch(item, null), true, 'null matches {}'); });
- assert.strictEqual(_.isMatch({b: 1}, {a: void 0}), false, 'handles undefined values (1683)');
-
- _.each([true, 5, NaN, null, void 0], function(item) {
- assert.strictEqual(_.isMatch({a: 1}, item), true, 'treats primitives as empty');
- });
-
- function Prototest() {}
- Prototest.prototype.x = 1;
- var specObj = new Prototest;
- assert.equal(_.isMatch({x: 2}, specObj), true, 'spec is restricted to own properties');
-
- specObj.y = 5;
- assert.equal(_.isMatch({x: 1, y: 5}, specObj), true);
- assert.equal(_.isMatch({x: 1, y: 4}, specObj), false);
-
- assert.ok(_.isMatch(specObj, {x: 1, y: 5}), 'inherited and own properties are checked on the test object');
-
- Prototest.x = 5;
- assert.ok(_.isMatch({x: 5, y: 1}, Prototest), 'spec can be a function');
-
- //null edge cases
- var oCon = {constructor: Object};
- assert.deepEqual(_.map([null, void 0, 5, {}], _.partial(_.isMatch, _, oCon)), [false, false, false, true], 'doesnt falsey match constructor on undefined/null');
- });
-
- QUnit.test('matcher', function(assert) {
- var moe = {name: 'Moe Howard', hair: true};
- var curly = {name: 'Curly Howard', hair: false};
- var stooges = [moe, curly];
-
- assert.equal(_.matcher({hair: true})(moe), true, 'Returns a boolean');
- assert.equal(_.matcher({hair: true})(curly), false, 'Returns a boolean');
-
- assert.equal(_.matcher({__x__: void 0})(5), false, 'can match undefined props on primitives');
- assert.equal(_.matcher({__x__: void 0})({__x__: void 0}), true, 'can match undefined props');
-
- assert.equal(_.matcher({})(null), true, 'Empty spec called with null object returns true');
- assert.equal(_.matcher({a: 1})(null), false, 'Non-empty spec called with null object returns false');
-
- assert.ok(_.find(stooges, _.matcher({hair: false})) === curly, 'returns a predicate that can be used by finding functions.');
- assert.ok(_.find(stooges, _.matcher(moe)) === moe, 'can be used to locate an object exists in a collection.');
- assert.deepEqual(_.filter([null, void 0], _.matcher({a: 1})), [], 'Do not throw on null values.');
-
- assert.deepEqual(_.filter([null, void 0], _.matcher(null)), [null, void 0], 'null matches null');
- assert.deepEqual(_.filter([null, void 0], _.matcher({})), [null, void 0], 'null matches {}');
- assert.deepEqual(_.filter([{b: 1}], _.matcher({a: void 0})), [], 'handles undefined values (1683)');
-
- _.each([true, 5, NaN, null, void 0], function(item) {
- assert.equal(_.matcher(item)({a: 1}), true, 'treats primitives as empty');
- });
-
- function Prototest() {}
- Prototest.prototype.x = 1;
- var specObj = new Prototest;
- var protospec = _.matcher(specObj);
- assert.equal(protospec({x: 2}), true, 'spec is restricted to own properties');
-
- specObj.y = 5;
- protospec = _.matcher(specObj);
- assert.equal(protospec({x: 1, y: 5}), true);
- assert.equal(protospec({x: 1, y: 4}), false);
-
- assert.ok(_.matcher({x: 1, y: 5})(specObj), 'inherited and own properties are checked on the test object');
-
- Prototest.x = 5;
- assert.ok(_.matcher(Prototest)({x: 5, y: 1}), 'spec can be a function');
-
- // #1729
- var o = {b: 1};
- var m = _.matcher(o);
-
- assert.equal(m({b: 1}), true);
- o.b = 2;
- o.a = 1;
- assert.equal(m({b: 1}), true, 'changing spec object doesnt change matches result');
-
-
- //null edge cases
- var oCon = _.matcher({constructor: Object});
- assert.deepEqual(_.map([null, void 0, 5, {}], oCon), [false, false, false, true], 'doesnt falsey match constructor on undefined/null');
- });
-
- QUnit.test('matches', function(assert) {
- assert.strictEqual(_.matches, _.matcher, 'is an alias for matcher');
- });
-
- QUnit.test('findKey', function(assert) {
- var objects = {
- a: {a: 0, b: 0},
- b: {a: 1, b: 1},
- c: {a: 2, b: 2}
- };
-
- assert.equal(_.findKey(objects, function(obj) {
- return obj.a === 0;
- }), 'a');
-
- assert.equal(_.findKey(objects, function(obj) {
- return obj.b * obj.a === 4;
- }), 'c');
-
- assert.equal(_.findKey(objects, 'a'), 'b', 'Uses lookupIterator');
-
- assert.equal(_.findKey(objects, function(obj) {
- return obj.b * obj.a === 5;
- }), void 0);
-
- assert.strictEqual(_.findKey([1, 2, 3, 4, 5, 6], function(obj) {
- return obj === 3;
- }), '2', 'Keys are strings');
-
- assert.strictEqual(_.findKey(objects, function(a) {
- return a.foo === null;
- }), void 0);
-
- _.findKey({a: {a: 1}}, function(a, key, obj) {
- assert.equal(key, 'a');
- assert.deepEqual(obj, {a: {a: 1}});
- assert.strictEqual(this, objects, 'called with context');
- }, objects);
-
- var array = [1, 2, 3, 4];
- array.match = 55;
- assert.strictEqual(_.findKey(array, function(x) { return x === 55; }), 'match', 'matches array-likes keys');
- });
-
-
- QUnit.test('mapObject', function(assert) {
- var obj = {a: 1, b: 2};
- var objects = {
- a: {a: 0, b: 0},
- b: {a: 1, b: 1},
- c: {a: 2, b: 2}
- };
-
- assert.deepEqual(_.mapObject(obj, function(val) {
- return val * 2;
- }), {a: 2, b: 4}, 'simple objects');
-
- assert.deepEqual(_.mapObject(objects, function(val) {
- return _.reduce(val, function(memo, v){
- return memo + v;
- }, 0);
- }), {a: 0, b: 2, c: 4}, 'nested objects');
-
- assert.deepEqual(_.mapObject(obj, function(val, key, o) {
- return o[key] * 2;
- }), {a: 2, b: 4}, 'correct keys');
-
- assert.deepEqual(_.mapObject([1, 2], function(val) {
- return val * 2;
- }), {0: 2, 1: 4}, 'check behavior for arrays');
-
- assert.deepEqual(_.mapObject(obj, function(val) {
- return val * this.multiplier;
- }, {multiplier: 3}), {a: 3, b: 6}, 'keep context');
-
- assert.deepEqual(_.mapObject({a: 1}, function() {
- return this.length;
- }, [1, 2]), {a: 2}, 'called with context');
-
- var ids = _.mapObject({length: 2, 0: {id: '1'}, 1: {id: '2'}}, function(n){
- return n.id;
- });
- assert.deepEqual(ids, {length: void 0, 0: '1', 1: '2'}, 'Check with array-like objects');
-
- // Passing a property name like _.pluck.
- var people = {a: {name: 'moe', age: 30}, b: {name: 'curly', age: 50}};
- assert.deepEqual(_.mapObject(people, 'name'), {a: 'moe', b: 'curly'}, 'predicate string map to object properties');
-
- _.each([null, void 0, 1, 'abc', [], {}, void 0], function(val){
- assert.deepEqual(_.mapObject(val, _.identity), {}, 'mapValue identity');
- });
-
- var Proto = function(){ this.a = 1; };
- Proto.prototype.b = 1;
- var protoObj = new Proto();
- assert.deepEqual(_.mapObject(protoObj, _.identity), {a: 1}, 'ignore inherited values from prototypes');
-
- });
-}());
diff --git a/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/utility.js b/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/utility.js
deleted file mode 100644
index fbd54df3..00000000
--- a/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/test/utility.js
+++ /dev/null
@@ -1,420 +0,0 @@
-(function() {
- var _ = typeof require == 'function' ? require('..') : window._;
- var templateSettings;
-
- QUnit.module('Utility', {
-
- beforeEach: function() {
- templateSettings = _.clone(_.templateSettings);
- },
-
- afterEach: function() {
- _.templateSettings = templateSettings;
- }
-
- });
-
- if (typeof this == 'object') {
- QUnit.test('noConflict', function(assert) {
- var underscore = _.noConflict();
- assert.equal(underscore.identity(1), 1);
- if (typeof require != 'function') {
- assert.equal(this._, void 0, 'global underscore is removed');
- this._ = underscore;
- } else if (typeof global !== 'undefined') {
- delete global._;
- }
- });
- }
-
- if (typeof require == 'function') {
- QUnit.test('noConflict (node vm)', function(assert) {
- assert.expect(2);
- var done = assert.async();
- var fs = require('fs');
- var vm = require('vm');
- var filename = __dirname + '/../underscore.js';
- fs.readFile(filename, function(err, content){
- var sandbox = vm.createScript(
- content + 'this.underscore = this._.noConflict();',
- filename
- );
- var context = {_: 'oldvalue'};
- sandbox.runInNewContext(context);
- assert.equal(context._, 'oldvalue');
- assert.equal(context.underscore.VERSION, _.VERSION);
-
- done();
- });
- });
- }
-
- QUnit.test('#750 - Return _ instance.', function(assert) {
- assert.expect(2);
- var instance = _([]);
- assert.ok(_(instance) === instance);
- assert.ok(new _(instance) === instance);
- });
-
- QUnit.test('identity', function(assert) {
- var stooge = {name: 'moe'};
- assert.equal(_.identity(stooge), stooge, 'stooge is the same as his identity');
- });
-
- QUnit.test('constant', function(assert) {
- var stooge = {name: 'moe'};
- assert.equal(_.constant(stooge)(), stooge, 'should create a function that returns stooge');
- });
-
- QUnit.test('noop', function(assert) {
- assert.strictEqual(_.noop('curly', 'larry', 'moe'), void 0, 'should always return undefined');
- });
-
- QUnit.test('property', function(assert) {
- var stooge = {name: 'moe'};
- assert.equal(_.property('name')(stooge), 'moe', 'should return the property with the given name');
- assert.equal(_.property('name')(null), void 0, 'should return undefined for null values');
- assert.equal(_.property('name')(void 0), void 0, 'should return undefined for undefined values');
- });
-
- QUnit.test('propertyOf', function(assert) {
- var stoogeRanks = _.propertyOf({curly: 2, moe: 1, larry: 3});
- assert.equal(stoogeRanks('curly'), 2, 'should return the property with the given name');
- assert.equal(stoogeRanks(null), void 0, 'should return undefined for null values');
- assert.equal(stoogeRanks(void 0), void 0, 'should return undefined for undefined values');
-
- function MoreStooges() { this.shemp = 87; }
- MoreStooges.prototype = {curly: 2, moe: 1, larry: 3};
- var moreStoogeRanks = _.propertyOf(new MoreStooges());
- assert.equal(moreStoogeRanks('curly'), 2, 'should return properties from further up the prototype chain');
-
- var nullPropertyOf = _.propertyOf(null);
- assert.equal(nullPropertyOf('curly'), void 0, 'should return undefined when obj is null');
-
- var undefPropertyOf = _.propertyOf(void 0);
- assert.equal(undefPropertyOf('curly'), void 0, 'should return undefined when obj is undefined');
- });
-
- QUnit.test('random', function(assert) {
- var array = _.range(1000);
- var min = Math.pow(2, 31);
- var max = Math.pow(2, 62);
-
- assert.ok(_.every(array, function() {
- return _.random(min, max) >= min;
- }), 'should produce a random number greater than or equal to the minimum number');
-
- assert.ok(_.some(array, function() {
- return _.random(Number.MAX_VALUE) > 0;
- }), 'should produce a random number when passed `Number.MAX_VALUE`');
- });
-
- QUnit.test('now', function(assert) {
- var diff = _.now() - new Date().getTime();
- assert.ok(diff <= 0 && diff > -5, 'Produces the correct time in milliseconds');//within 5ms
- });
-
- QUnit.test('uniqueId', function(assert) {
- var ids = [], i = 0;
- while (i++ < 100) ids.push(_.uniqueId());
- assert.equal(_.uniq(ids).length, ids.length, 'can generate a globally-unique stream of ids');
- });
-
- QUnit.test('times', function(assert) {
- var vals = [];
- _.times(3, function(i) { vals.push(i); });
- assert.deepEqual(vals, [0, 1, 2], 'is 0 indexed');
- //
- vals = [];
- _(3).times(function(i) { vals.push(i); });
- assert.deepEqual(vals, [0, 1, 2], 'works as a wrapper');
- // collects return values
- assert.deepEqual([0, 1, 2], _.times(3, function(i) { return i; }), 'collects return values');
-
- assert.deepEqual(_.times(0, _.identity), []);
- assert.deepEqual(_.times(-1, _.identity), []);
- assert.deepEqual(_.times(parseFloat('-Infinity'), _.identity), []);
- });
-
- QUnit.test('mixin', function(assert) {
- _.mixin({
- myReverse: function(string) {
- return string.split('').reverse().join('');
- }
- });
- assert.equal(_.myReverse('panacea'), 'aecanap', 'mixed in a function to _');
- assert.equal(_('champ').myReverse(), 'pmahc', 'mixed in a function to the OOP wrapper');
- });
-
- QUnit.test('_.escape', function(assert) {
- assert.equal(_.escape(null), '');
- });
-
- QUnit.test('_.unescape', function(assert) {
- var string = 'Curly & Moe';
- assert.equal(_.unescape(null), '');
- assert.equal(_.unescape(_.escape(string)), string);
- assert.equal(_.unescape(string), string, 'don\'t unescape unnecessarily');
- });
-
- // Don't care what they escape them to just that they're escaped and can be unescaped
- QUnit.test('_.escape & unescape', function(assert) {
- // test & (&amp;) seperately obviously
- var escapeCharacters = ['<', '>', '"', '\'', '`'];
-
- _.each(escapeCharacters, function(escapeChar) {
- var s = 'a ' + escapeChar + ' string escaped';
- var e = _.escape(s);
- assert.notEqual(s, e, escapeChar + ' is escaped');
- assert.equal(s, _.unescape(e), escapeChar + ' can be unescaped');
-
- s = 'a ' + escapeChar + escapeChar + escapeChar + 'some more string' + escapeChar;
- e = _.escape(s);
-
- assert.equal(e.indexOf(escapeChar), -1, 'can escape multiple occurances of ' + escapeChar);
- assert.equal(_.unescape(e), s, 'multiple occurrences of ' + escapeChar + ' can be unescaped');
- });
-
- // handles multiple escape characters at once
- var joiner = ' other stuff ';
- var allEscaped = escapeCharacters.join(joiner);
- allEscaped += allEscaped;
- assert.ok(_.every(escapeCharacters, function(escapeChar) {
- return allEscaped.indexOf(escapeChar) !== -1;
- }), 'handles multiple characters');
- assert.ok(allEscaped.indexOf(joiner) >= 0, 'can escape multiple escape characters at the same time');
-
- // test & -> &amp;
- var str = 'some string & another string & yet another';
- var escaped = _.escape(str);
-
- assert.ok(escaped.indexOf('&') !== -1, 'handles & aka &amp;');
- assert.equal(_.unescape(str), str, 'can unescape &amp;');
- });
-
- QUnit.test('template', function(assert) {
- var basicTemplate = _.template("<%= thing %> is gettin' on my noives!");
- var result = basicTemplate({thing: 'This'});
- assert.equal(result, "This is gettin' on my noives!", 'can do basic attribute interpolation');
-
- var sansSemicolonTemplate = _.template('A <% this %> B');
- assert.equal(sansSemicolonTemplate(), 'A B');
-
- var backslashTemplate = _.template('<%= thing %> is \\ridanculous');
- assert.equal(backslashTemplate({thing: 'This'}), 'This is \\ridanculous');
-
- var escapeTemplate = _.template('<%= a ? "checked=\\"checked\\"" : "" %>');
- assert.equal(escapeTemplate({a: true}), 'checked="checked"', 'can handle slash escapes in interpolations.');
-
- var fancyTemplate = _.template('<ul><% ' +
- ' for (var key in people) { ' +
- '%><li><%= people[key] %></li><% } %></ul>');
- result = fancyTemplate({people: {moe: 'Moe', larry: 'Larry', curly: 'Curly'}});
- assert.equal(result, '<ul><li>Moe</li><li>Larry</li><li>Curly</li></ul>', 'can run arbitrary javascript in templates');
-
- var escapedCharsInJavascriptTemplate = _.template('<ul><% _.each(numbers.split("\\n"), function(item) { %><li><%= item %></li><% }) %></ul>');
- result = escapedCharsInJavascriptTemplate({numbers: 'one\ntwo\nthree\nfour'});
- assert.equal(result, '<ul><li>one</li><li>two</li><li>three</li><li>four</li></ul>', 'Can use escaped characters (e.g. \\n) in JavaScript');
-
- var namespaceCollisionTemplate = _.template('<%= pageCount %> <%= thumbnails[pageCount] %> <% _.each(thumbnails, function(p) { %><div class="thumbnail" rel="<%= p %>"></div><% }); %>');
- result = namespaceCollisionTemplate({
- pageCount: 3,
- thumbnails: {
- 1: 'p1-thumbnail.gif',
- 2: 'p2-thumbnail.gif',
- 3: 'p3-thumbnail.gif'
- }
- });
- assert.equal(result, '3 p3-thumbnail.gif <div class="thumbnail" rel="p1-thumbnail.gif"></div><div class="thumbnail" rel="p2-thumbnail.gif"></div><div class="thumbnail" rel="p3-thumbnail.gif"></div>');
-
- var noInterpolateTemplate = _.template('<div><p>Just some text. Hey, I know this is silly but it aids consistency.</p></div>');
- result = noInterpolateTemplate();
- assert.equal(result, '<div><p>Just some text. Hey, I know this is silly but it aids consistency.</p></div>');
-
- var quoteTemplate = _.template("It's its, not it's");
- assert.equal(quoteTemplate({}), "It's its, not it's");
-
- var quoteInStatementAndBody = _.template('<% ' +
- " if(foo == 'bar'){ " +
- "%>Statement quotes and 'quotes'.<% } %>");
- assert.equal(quoteInStatementAndBody({foo: 'bar'}), "Statement quotes and 'quotes'.");
-
- var withNewlinesAndTabs = _.template('This\n\t\tis: <%= x %>.\n\tok.\nend.');
- assert.equal(withNewlinesAndTabs({x: 'that'}), 'This\n\t\tis: that.\n\tok.\nend.');
-
- var template = _.template('<i><%- value %></i>');
- result = template({value: '<script>'});
- assert.equal(result, '<i>&lt;script&gt;</i>');
-
- var stooge = {
- name: 'Moe',
- template: _.template("I'm <%= this.name %>")
- };
- assert.equal(stooge.template(), "I'm Moe");
-
- template = _.template('\n ' +
- ' <%\n ' +
- ' // a comment\n ' +
- ' if (data) { data += 12345; }; %>\n ' +
- ' <li><%= data %></li>\n '
- );
- assert.equal(template({data: 12345}).replace(/\s/g, ''), '<li>24690</li>');
-
- _.templateSettings = {
- evaluate: /\{\{([\s\S]+?)\}\}/g,
- interpolate: /\{\{=([\s\S]+?)\}\}/g
- };
-
- var custom = _.template('<ul>{{ for (var key in people) { }}<li>{{= people[key] }}</li>{{ } }}</ul>');
- result = custom({people: {moe: 'Moe', larry: 'Larry', curly: 'Curly'}});
- assert.equal(result, '<ul><li>Moe</li><li>Larry</li><li>Curly</li></ul>', 'can run arbitrary javascript in templates');
-
- var customQuote = _.template("It's its, not it's");
- assert.equal(customQuote({}), "It's its, not it's");
-
- quoteInStatementAndBody = _.template("{{ if(foo == 'bar'){ }}Statement quotes and 'quotes'.{{ } }}");
- assert.equal(quoteInStatementAndBody({foo: 'bar'}), "Statement quotes and 'quotes'.");
-
- _.templateSettings = {
- evaluate: /<\?([\s\S]+?)\?>/g,
- interpolate: /<\?=([\s\S]+?)\?>/g
- };
-
- var customWithSpecialChars = _.template('<ul><? for (var key in people) { ?><li><?= people[key] ?></li><? } ?></ul>');
- result = customWithSpecialChars({people: {moe: 'Moe', larry: 'Larry', curly: 'Curly'}});
- assert.equal(result, '<ul><li>Moe</li><li>Larry</li><li>Curly</li></ul>', 'can run arbitrary javascript in templates');
-
- var customWithSpecialCharsQuote = _.template("It's its, not it's");
- assert.equal(customWithSpecialCharsQuote({}), "It's its, not it's");
-
- quoteInStatementAndBody = _.template("<? if(foo == 'bar'){ ?>Statement quotes and 'quotes'.<? } ?>");
- assert.equal(quoteInStatementAndBody({foo: 'bar'}), "Statement quotes and 'quotes'.");
-
- _.templateSettings = {
- interpolate: /\{\{(.+?)\}\}/g
- };
-
- var mustache = _.template('Hello {{planet}}!');
- assert.equal(mustache({planet: 'World'}), 'Hello World!', 'can mimic mustache.js');
-
- var templateWithNull = _.template('a null undefined {{planet}}');
- assert.equal(templateWithNull({planet: 'world'}), 'a null undefined world', 'can handle missing escape and evaluate settings');
- });
-
- QUnit.test('_.template provides the generated function source, when a SyntaxError occurs', function(assert) {
- var source;
- try {
- _.template('<b><%= if x %></b>');
- } catch (ex) {
- source = ex.source;
- }
- assert.ok(/__p/.test(source));
- });
-
- QUnit.test('_.template handles \\u2028 & \\u2029', function(assert) {
- var tmpl = _.template('<p>\u2028<%= "\\u2028\\u2029" %>\u2029</p>');
- assert.strictEqual(tmpl(), '<p>\u2028\u2028\u2029\u2029</p>');
- });
-
- QUnit.test('result calls functions and returns primitives', function(assert) {
- var obj = {w: '', x: 'x', y: function(){ return this.x; }};
- assert.strictEqual(_.result(obj, 'w'), '');
- assert.strictEqual(_.result(obj, 'x'), 'x');
- assert.strictEqual(_.result(obj, 'y'), 'x');
- assert.strictEqual(_.result(obj, 'z'), void 0);
- assert.strictEqual(_.result(null, 'x'), void 0);
- });
-
- QUnit.test('result returns a default value if object is null or undefined', function(assert) {
- assert.strictEqual(_.result(null, 'b', 'default'), 'default');
- assert.strictEqual(_.result(void 0, 'c', 'default'), 'default');
- assert.strictEqual(_.result(''.match('missing'), 1, 'default'), 'default');
- });
-
- QUnit.test('result returns a default value if property of object is missing', function(assert) {
- assert.strictEqual(_.result({d: null}, 'd', 'default'), null);
- assert.strictEqual(_.result({e: false}, 'e', 'default'), false);
- });
-
- QUnit.test('result only returns the default value if the object does not have the property or is undefined', function(assert) {
- assert.strictEqual(_.result({}, 'b', 'default'), 'default');
- assert.strictEqual(_.result({d: void 0}, 'd', 'default'), 'default');
- });
-
- QUnit.test('result does not return the default if the property of an object is found in the prototype', function(assert) {
- var Foo = function(){};
- Foo.prototype.bar = 1;
- assert.strictEqual(_.result(new Foo, 'bar', 2), 1);
- });
-
- QUnit.test('result does use the fallback when the result of invoking the property is undefined', function(assert) {
- var obj = {a: function() {}};
- assert.strictEqual(_.result(obj, 'a', 'failed'), void 0);
- });
-
- QUnit.test('result fallback can use a function', function(assert) {
- var obj = {a: [1, 2, 3]};
- assert.strictEqual(_.result(obj, 'b', _.constant(5)), 5);
- assert.strictEqual(_.result(obj, 'b', function() {
- return this.a;
- }), obj.a, 'called with context');
- });
-
- QUnit.test('_.templateSettings.variable', function(assert) {
- var s = '<%=data.x%>';
- var data = {x: 'x'};
- var tmp = _.template(s, {variable: 'data'});
- assert.strictEqual(tmp(data), 'x');
- _.templateSettings.variable = 'data';
- assert.strictEqual(_.template(s)(data), 'x');
- });
-
- QUnit.test('#547 - _.templateSettings is unchanged by custom settings.', function(assert) {
- assert.ok(!_.templateSettings.variable);
- _.template('', {}, {variable: 'x'});
- assert.ok(!_.templateSettings.variable);
- });
-
- QUnit.test('#556 - undefined template variables.', function(assert) {
- var template = _.template('<%=x%>');
- assert.strictEqual(template({x: null}), '');
- assert.strictEqual(template({x: void 0}), '');
-
- var templateEscaped = _.template('<%-x%>');
- assert.strictEqual(templateEscaped({x: null}), '');
- assert.strictEqual(templateEscaped({x: void 0}), '');
-
- var templateWithProperty = _.template('<%=x.foo%>');
- assert.strictEqual(templateWithProperty({x: {}}), '');
- assert.strictEqual(templateWithProperty({x: {}}), '');
-
- var templateWithPropertyEscaped = _.template('<%-x.foo%>');
- assert.strictEqual(templateWithPropertyEscaped({x: {}}), '');
- assert.strictEqual(templateWithPropertyEscaped({x: {}}), '');
- });
-
- QUnit.test('interpolate evaluates code only once.', function(assert) {
- assert.expect(2);
- var count = 0;
- var template = _.template('<%= f() %>');
- template({f: function(){ assert.ok(!count++); }});
-
- var countEscaped = 0;
- var templateEscaped = _.template('<%- f() %>');
- templateEscaped({f: function(){ assert.ok(!countEscaped++); }});
- });
-
- QUnit.test('#746 - _.template settings are not modified.', function(assert) {
- assert.expect(1);
- var settings = {};
- _.template('', null, settings);
- assert.deepEqual(settings, {});
- });
-
- QUnit.test('#779 - delimeters are applied to unescaped text.', function(assert) {
- assert.expect(1);
- var template = _.template('<<\nx\n>>', null, {evaluate: /<<(.*?)>>/g});
- assert.strictEqual(template(), '<<\nx\n>>');
- });
-
-}());
diff --git a/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/underscore-min.js b/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/underscore-min.js
deleted file mode 100644
index f01025b7..00000000
--- a/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/underscore-min.js
+++ /dev/null
@@ -1,6 +0,0 @@
-// Underscore.js 1.8.3
-// http://underscorejs.org
-// (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
-// Underscore may be freely distributed under the MIT license.
-(function(){function n(n){function t(t,r,e,u,i,o){for(;i>=0&&o>i;i+=n){var a=u?u[i]:i;e=r(e,t[a],a,t)}return e}return function(r,e,u,i){e=b(e,i,4);var o=!k(r)&&m.keys(r),a=(o||r).length,c=n>0?0:a-1;return arguments.length<3&&(u=r[o?o[c]:c],c+=n),t(r,e,u,o,c,a)}}function t(n){return function(t,r,e){r=x(r,e);for(var u=O(t),i=n>0?0:u-1;i>=0&&u>i;i+=n)if(r(t[i],i,t))return i;return-1}}function r(n,t,r){return function(e,u,i){var o=0,a=O(e);if("number"==typeof i)n>0?o=i>=0?i:Math.max(i+a,o):a=i>=0?Math.min(i+1,a):i+a+1;else if(r&&i&&a)return i=r(e,u),e[i]===u?i:-1;if(u!==u)return i=t(l.call(e,o,a),m.isNaN),i>=0?i+o:-1;for(i=n>0?o:a-1;i>=0&&a>i;i+=n)if(e[i]===u)return i;return-1}}function e(n,t){var r=I.length,e=n.constructor,u=m.isFunction(e)&&e.prototype||a,i="constructor";for(m.has(n,i)&&!m.contains(t,i)&&t.push(i);r--;)i=I[r],i in n&&n[i]!==u[i]&&!m.contains(t,i)&&t.push(i)}var u=this,i=u._,o=Array.prototype,a=Object.prototype,c=Function.prototype,f=o.push,l=o.slice,s=a.toString,p=a.hasOwnProperty,h=Array.isArray,v=Object.keys,g=c.bind,y=Object.create,d=function(){},m=function(n){return n instanceof m?n:this instanceof m?void(this._wrapped=n):new m(n)};"undefined"!=typeof exports?("undefined"!=typeof module&&module.exports&&(exports=module.exports=m),exports._=m):u._=m,m.VERSION="1.8.3";var b=function(n,t,r){if(t===void 0)return n;switch(null==r?3:r){case 1:return function(r){return n.call(t,r)};case 2:return function(r,e){return n.call(t,r,e)};case 3:return function(r,e,u){return n.call(t,r,e,u)};case 4:return function(r,e,u,i){return n.call(t,r,e,u,i)}}return function(){return n.apply(t,arguments)}},x=function(n,t,r){return null==n?m.identity:m.isFunction(n)?b(n,t,r):m.isObject(n)?m.matcher(n):m.property(n)};m.iteratee=function(n,t){return x(n,t,1/0)};var _=function(n,t){return function(r){var e=arguments.length;if(2>e||null==r)return r;for(var u=1;e>u;u++)for(var i=arguments[u],o=n(i),a=o.length,c=0;a>c;c++){var f=o[c];t&&r[f]!==void 0||(r[f]=i[f])}return r}},j=function(n){if(!m.isObject(n))return{};if(y)return y(n);d.prototype=n;var t=new d;return d.prototype=null,t},w=function(n){return function(t){return null==t?void 0:t[n]}},A=Math.pow(2,53)-1,O=w("length"),k=function(n){var t=O(n);return"number"==typeof t&&t>=0&&A>=t};m.each=m.forEach=function(n,t,r){t=b(t,r);var e,u;if(k(n))for(e=0,u=n.length;u>e;e++)t(n[e],e,n);else{var i=m.keys(n);for(e=0,u=i.length;u>e;e++)t(n[i[e]],i[e],n)}return n},m.map=m.collect=function(n,t,r){t=x(t,r);for(var e=!k(n)&&m.keys(n),u=(e||n).length,i=Array(u),o=0;u>o;o++){var a=e?e[o]:o;i[o]=t(n[a],a,n)}return i},m.reduce=m.foldl=m.inject=n(1),m.reduceRight=m.foldr=n(-1),m.find=m.detect=function(n,t,r){var e;return e=k(n)?m.findIndex(n,t,r):m.findKey(n,t,r),e!==void 0&&e!==-1?n[e]:void 0},m.filter=m.select=function(n,t,r){var e=[];return t=x(t,r),m.each(n,function(n,r,u){t(n,r,u)&&e.push(n)}),e},m.reject=function(n,t,r){return m.filter(n,m.negate(x(t)),r)},m.every=m.all=function(n,t,r){t=x(t,r);for(var e=!k(n)&&m.keys(n),u=(e||n).length,i=0;u>i;i++){var o=e?e[i]:i;if(!t(n[o],o,n))return!1}return!0},m.some=m.any=function(n,t,r){t=x(t,r);for(var e=!k(n)&&m.keys(n),u=(e||n).length,i=0;u>i;i++){var o=e?e[i]:i;if(t(n[o],o,n))return!0}return!1},m.contains=m.includes=m.include=function(n,t,r,e){return k(n)||(n=m.values(n)),("number"!=typeof r||e)&&(r=0),m.indexOf(n,t,r)>=0},m.invoke=function(n,t){var r=l.call(arguments,2),e=m.isFunction(t);return m.map(n,function(n){var u=e?t:n[t];return null==u?u:u.apply(n,r)})},m.pluck=function(n,t){return m.map(n,m.property(t))},m.where=function(n,t){return m.filter(n,m.matcher(t))},m.findWhere=function(n,t){return m.find(n,m.matcher(t))},m.max=function(n,t,r){var e,u,i=-1/0,o=-1/0;if(null==t&&null!=n){n=k(n)?n:m.values(n);for(var a=0,c=n.length;c>a;a++)e=n[a],e>i&&(i=e)}else t=x(t,r),m.each(n,function(n,r,e){u=t(n,r,e),(u>o||u===-1/0&&i===-1/0)&&(i=n,o=u)});return i},m.min=function(n,t,r){var e,u,i=1/0,o=1/0;if(null==t&&null!=n){n=k(n)?n:m.values(n);for(var a=0,c=n.length;c>a;a++)e=n[a],i>e&&(i=e)}else t=x(t,r),m.each(n,function(n,r,e){u=t(n,r,e),(o>u||1/0===u&&1/0===i)&&(i=n,o=u)});return i},m.shuffle=function(n){for(var t,r=k(n)?n:m.values(n),e=r.length,u=Array(e),i=0;e>i;i++)t=m.random(0,i),t!==i&&(u[i]=u[t]),u[t]=r[i];return u},m.sample=function(n,t,r){return null==t||r?(k(n)||(n=m.values(n)),n[m.random(n.length-1)]):m.shuffle(n).slice(0,Math.max(0,t))},m.sortBy=function(n,t,r){return t=x(t,r),m.pluck(m.map(n,function(n,r,e){return{value:n,index:r,criteria:t(n,r,e)}}).sort(function(n,t){var r=n.criteria,e=t.criteria;if(r!==e){if(r>e||r===void 0)return 1;if(e>r||e===void 0)return-1}return n.index-t.index}),"value")};var F=function(n){return function(t,r,e){var u={};return r=x(r,e),m.each(t,function(e,i){var o=r(e,i,t);n(u,e,o)}),u}};m.groupBy=F(function(n,t,r){m.has(n,r)?n[r].push(t):n[r]=[t]}),m.indexBy=F(function(n,t,r){n[r]=t}),m.countBy=F(function(n,t,r){m.has(n,r)?n[r]++:n[r]=1}),m.toArray=function(n){return n?m.isArray(n)?l.call(n):k(n)?m.map(n,m.identity):m.values(n):[]},m.size=function(n){return null==n?0:k(n)?n.length:m.keys(n).length},m.partition=function(n,t,r){t=x(t,r);var e=[],u=[];return m.each(n,function(n,r,i){(t(n,r,i)?e:u).push(n)}),[e,u]},m.first=m.head=m.take=function(n,t,r){return null==n?void 0:null==t||r?n[0]:m.initial(n,n.length-t)},m.initial=function(n,t,r){return l.call(n,0,Math.max(0,n.length-(null==t||r?1:t)))},m.last=function(n,t,r){return null==n?void 0:null==t||r?n[n.length-1]:m.rest(n,Math.max(0,n.length-t))},m.rest=m.tail=m.drop=function(n,t,r){return l.call(n,null==t||r?1:t)},m.compact=function(n){return m.filter(n,m.identity)};var S=function(n,t,r,e){for(var u=[],i=0,o=e||0,a=O(n);a>o;o++){var c=n[o];if(k(c)&&(m.isArray(c)||m.isArguments(c))){t||(c=S(c,t,r));var f=0,l=c.length;for(u.length+=l;l>f;)u[i++]=c[f++]}else r||(u[i++]=c)}return u};m.flatten=function(n,t){return S(n,t,!1)},m.without=function(n){return m.difference(n,l.call(arguments,1))},m.uniq=m.unique=function(n,t,r,e){m.isBoolean(t)||(e=r,r=t,t=!1),null!=r&&(r=x(r,e));for(var u=[],i=[],o=0,a=O(n);a>o;o++){var c=n[o],f=r?r(c,o,n):c;t?(o&&i===f||u.push(c),i=f):r?m.contains(i,f)||(i.push(f),u.push(c)):m.contains(u,c)||u.push(c)}return u},m.union=function(){return m.uniq(S(arguments,!0,!0))},m.intersection=function(n){for(var t=[],r=arguments.length,e=0,u=O(n);u>e;e++){var i=n[e];if(!m.contains(t,i)){for(var o=1;r>o&&m.contains(arguments[o],i);o++);o===r&&t.push(i)}}return t},m.difference=function(n){var t=S(arguments,!0,!0,1);return m.filter(n,function(n){return!m.contains(t,n)})},m.zip=function(){return m.unzip(arguments)},m.unzip=function(n){for(var t=n&&m.max(n,O).length||0,r=Array(t),e=0;t>e;e++)r[e]=m.pluck(n,e);return r},m.object=function(n,t){for(var r={},e=0,u=O(n);u>e;e++)t?r[n[e]]=t[e]:r[n[e][0]]=n[e][1];return r},m.findIndex=t(1),m.findLastIndex=t(-1),m.sortedIndex=function(n,t,r,e){r=x(r,e,1);for(var u=r(t),i=0,o=O(n);o>i;){var a=Math.floor((i+o)/2);r(n[a])<u?i=a+1:o=a}return i},m.indexOf=r(1,m.findIndex,m.sortedIndex),m.lastIndexOf=r(-1,m.findLastIndex),m.range=function(n,t,r){null==t&&(t=n||0,n=0),r=r||1;for(var e=Math.max(Math.ceil((t-n)/r),0),u=Array(e),i=0;e>i;i++,n+=r)u[i]=n;return u};var E=function(n,t,r,e,u){if(!(e instanceof t))return n.apply(r,u);var i=j(n.prototype),o=n.apply(i,u);return m.isObject(o)?o:i};m.bind=function(n,t){if(g&&n.bind===g)return g.apply(n,l.call(arguments,1));if(!m.isFunction(n))throw new TypeError("Bind must be called on a function");var r=l.call(arguments,2),e=function(){return E(n,e,t,this,r.concat(l.call(arguments)))};return e},m.partial=function(n){var t=l.call(arguments,1),r=function(){for(var e=0,u=t.length,i=Array(u),o=0;u>o;o++)i[o]=t[o]===m?arguments[e++]:t[o];for(;e<arguments.length;)i.push(arguments[e++]);return E(n,r,this,this,i)};return r},m.bindAll=function(n){var t,r,e=arguments.length;if(1>=e)throw new Error("bindAll must be passed function names");for(t=1;e>t;t++)r=arguments[t],n[r]=m.bind(n[r],n);return n},m.memoize=function(n,t){var r=function(e){var u=r.cache,i=""+(t?t.apply(this,arguments):e);return m.has(u,i)||(u[i]=n.apply(this,arguments)),u[i]};return r.cache={},r},m.delay=function(n,t){var r=l.call(arguments,2);return setTimeout(function(){return n.apply(null,r)},t)},m.defer=m.partial(m.delay,m,1),m.throttle=function(n,t,r){var e,u,i,o=null,a=0;r||(r={});var c=function(){a=r.leading===!1?0:m.now(),o=null,i=n.apply(e,u),o||(e=u=null)};return function(){var f=m.now();a||r.leading!==!1||(a=f);var l=t-(f-a);return e=this,u=arguments,0>=l||l>t?(o&&(clearTimeout(o),o=null),a=f,i=n.apply(e,u),o||(e=u=null)):o||r.trailing===!1||(o=setTimeout(c,l)),i}},m.debounce=function(n,t,r){var e,u,i,o,a,c=function(){var f=m.now()-o;t>f&&f>=0?e=setTimeout(c,t-f):(e=null,r||(a=n.apply(i,u),e||(i=u=null)))};return function(){i=this,u=arguments,o=m.now();var f=r&&!e;return e||(e=setTimeout(c,t)),f&&(a=n.apply(i,u),i=u=null),a}},m.wrap=function(n,t){return m.partial(t,n)},m.negate=function(n){return function(){return!n.apply(this,arguments)}},m.compose=function(){var n=arguments,t=n.length-1;return function(){for(var r=t,e=n[t].apply(this,arguments);r--;)e=n[r].call(this,e);return e}},m.after=function(n,t){return function(){return--n<1?t.apply(this,arguments):void 0}},m.before=function(n,t){var r;return function(){return--n>0&&(r=t.apply(this,arguments)),1>=n&&(t=null),r}},m.once=m.partial(m.before,2);var M=!{toString:null}.propertyIsEnumerable("toString"),I=["valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"];m.keys=function(n){if(!m.isObject(n))return[];if(v)return v(n);var t=[];for(var r in n)m.has(n,r)&&t.push(r);return M&&e(n,t),t},m.allKeys=function(n){if(!m.isObject(n))return[];var t=[];for(var r in n)t.push(r);return M&&e(n,t),t},m.values=function(n){for(var t=m.keys(n),r=t.length,e=Array(r),u=0;r>u;u++)e[u]=n[t[u]];return e},m.mapObject=function(n,t,r){t=x(t,r);for(var e,u=m.keys(n),i=u.length,o={},a=0;i>a;a++)e=u[a],o[e]=t(n[e],e,n);return o},m.pairs=function(n){for(var t=m.keys(n),r=t.length,e=Array(r),u=0;r>u;u++)e[u]=[t[u],n[t[u]]];return e},m.invert=function(n){for(var t={},r=m.keys(n),e=0,u=r.length;u>e;e++)t[n[r[e]]]=r[e];return t},m.functions=m.methods=function(n){var t=[];for(var r in n)m.isFunction(n[r])&&t.push(r);return t.sort()},m.extend=_(m.allKeys),m.extendOwn=m.assign=_(m.keys),m.findKey=function(n,t,r){t=x(t,r);for(var e,u=m.keys(n),i=0,o=u.length;o>i;i++)if(e=u[i],t(n[e],e,n))return e},m.pick=function(n,t,r){var e,u,i={},o=n;if(null==o)return i;m.isFunction(t)?(u=m.allKeys(o),e=b(t,r)):(u=S(arguments,!1,!1,1),e=function(n,t,r){return t in r},o=Object(o));for(var a=0,c=u.length;c>a;a++){var f=u[a],l=o[f];e(l,f,o)&&(i[f]=l)}return i},m.omit=function(n,t,r){if(m.isFunction(t))t=m.negate(t);else{var e=m.map(S(arguments,!1,!1,1),String);t=function(n,t){return!m.contains(e,t)}}return m.pick(n,t,r)},m.defaults=_(m.allKeys,!0),m.create=function(n,t){var r=j(n);return t&&m.extendOwn(r,t),r},m.clone=function(n){return m.isObject(n)?m.isArray(n)?n.slice():m.extend({},n):n},m.tap=function(n,t){return t(n),n},m.isMatch=function(n,t){var r=m.keys(t),e=r.length;if(null==n)return!e;for(var u=Object(n),i=0;e>i;i++){var o=r[i];if(t[o]!==u[o]||!(o in u))return!1}return!0};var N=function(n,t,r,e){if(n===t)return 0!==n||1/n===1/t;if(null==n||null==t)return n===t;n instanceof m&&(n=n._wrapped),t instanceof m&&(t=t._wrapped);var u=s.call(n);if(u!==s.call(t))return!1;switch(u){case"[object RegExp]":case"[object String]":return""+n==""+t;case"[object Number]":return+n!==+n?+t!==+t:0===+n?1/+n===1/t:+n===+t;case"[object Date]":case"[object Boolean]":return+n===+t}var i="[object Array]"===u;if(!i){if("object"!=typeof n||"object"!=typeof t)return!1;var o=n.constructor,a=t.constructor;if(o!==a&&!(m.isFunction(o)&&o instanceof o&&m.isFunction(a)&&a instanceof a)&&"constructor"in n&&"constructor"in t)return!1}r=r||[],e=e||[];for(var c=r.length;c--;)if(r[c]===n)return e[c]===t;if(r.push(n),e.push(t),i){if(c=n.length,c!==t.length)return!1;for(;c--;)if(!N(n[c],t[c],r,e))return!1}else{var f,l=m.keys(n);if(c=l.length,m.keys(t).length!==c)return!1;for(;c--;)if(f=l[c],!m.has(t,f)||!N(n[f],t[f],r,e))return!1}return r.pop(),e.pop(),!0};m.isEqual=function(n,t){return N(n,t)},m.isEmpty=function(n){return null==n?!0:k(n)&&(m.isArray(n)||m.isString(n)||m.isArguments(n))?0===n.length:0===m.keys(n).length},m.isElement=function(n){return!(!n||1!==n.nodeType)},m.isArray=h||function(n){return"[object Array]"===s.call(n)},m.isObject=function(n){var t=typeof n;return"function"===t||"object"===t&&!!n},m.each(["Arguments","Function","String","Number","Date","RegExp","Error"],function(n){m["is"+n]=function(t){return s.call(t)==="[object "+n+"]"}}),m.isArguments(arguments)||(m.isArguments=function(n){return m.has(n,"callee")}),"function"!=typeof/./&&"object"!=typeof Int8Array&&(m.isFunction=function(n){return"function"==typeof n||!1}),m.isFinite=function(n){return isFinite(n)&&!isNaN(parseFloat(n))},m.isNaN=function(n){return m.isNumber(n)&&n!==+n},m.isBoolean=function(n){return n===!0||n===!1||"[object Boolean]"===s.call(n)},m.isNull=function(n){return null===n},m.isUndefined=function(n){return n===void 0},m.has=function(n,t){return null!=n&&p.call(n,t)},m.noConflict=function(){return u._=i,this},m.identity=function(n){return n},m.constant=function(n){return function(){return n}},m.noop=function(){},m.property=w,m.propertyOf=function(n){return null==n?function(){}:function(t){return n[t]}},m.matcher=m.matches=function(n){return n=m.extendOwn({},n),function(t){return m.isMatch(t,n)}},m.times=function(n,t,r){var e=Array(Math.max(0,n));t=b(t,r,1);for(var u=0;n>u;u++)e[u]=t(u);return e},m.random=function(n,t){return null==t&&(t=n,n=0),n+Math.floor(Math.random()*(t-n+1))},m.now=Date.now||function(){return(new Date).getTime()};var B={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#x27;","`":"&#x60;"},T=m.invert(B),R=function(n){var t=function(t){return n[t]},r="(?:"+m.keys(n).join("|")+")",e=RegExp(r),u=RegExp(r,"g");return function(n){return n=null==n?"":""+n,e.test(n)?n.replace(u,t):n}};m.escape=R(B),m.unescape=R(T),m.result=function(n,t,r){var e=null==n?void 0:n[t];return e===void 0&&(e=r),m.isFunction(e)?e.call(n):e};var q=0;m.uniqueId=function(n){var t=++q+"";return n?n+t:t},m.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var K=/(.)^/,z={"'":"'","\\":"\\","\r":"r","\n":"n","\u2028":"u2028","\u2029":"u2029"},D=/\\|'|\r|\n|\u2028|\u2029/g,L=function(n){return"\\"+z[n]};m.template=function(n,t,r){!t&&r&&(t=r),t=m.defaults({},t,m.templateSettings);var e=RegExp([(t.escape||K).source,(t.interpolate||K).source,(t.evaluate||K).source].join("|")+"|$","g"),u=0,i="__p+='";n.replace(e,function(t,r,e,o,a){return i+=n.slice(u,a).replace(D,L),u=a+t.length,r?i+="'+\n((__t=("+r+"))==null?'':_.escape(__t))+\n'":e?i+="'+\n((__t=("+e+"))==null?'':__t)+\n'":o&&(i+="';\n"+o+"\n__p+='"),t}),i+="';\n",t.variable||(i="with(obj||{}){\n"+i+"}\n"),i="var __t,__p='',__j=Array.prototype.join,"+"print=function(){__p+=__j.call(arguments,'');};\n"+i+"return __p;\n";try{var o=new Function(t.variable||"obj","_",i)}catch(a){throw a.source=i,a}var c=function(n){return o.call(this,n,m)},f=t.variable||"obj";return c.source="function("+f+"){\n"+i+"}",c},m.chain=function(n){var t=m(n);return t._chain=!0,t};var P=function(n,t){return n._chain?m(t).chain():t};m.mixin=function(n){m.each(m.functions(n),function(t){var r=m[t]=n[t];m.prototype[t]=function(){var n=[this._wrapped];return f.apply(n,arguments),P(this,r.apply(m,n))}})},m.mixin(m),m.each(["pop","push","reverse","shift","sort","splice","unshift"],function(n){var t=o[n];m.prototype[n]=function(){var r=this._wrapped;return t.apply(r,arguments),"shift"!==n&&"splice"!==n||0!==r.length||delete r[0],P(this,r)}}),m.each(["concat","join","slice"],function(n){var t=o[n];m.prototype[n]=function(){return P(this,t.apply(this._wrapped,arguments))}}),m.prototype.value=function(){return this._wrapped},m.prototype.valueOf=m.prototype.toJSON=m.prototype.value,m.prototype.toString=function(){return""+this._wrapped},"function"==typeof define&&define.amd&&define("underscore",[],function(){return m})}).call(this);
-//# sourceMappingURL=underscore-min.map \ No newline at end of file
diff --git a/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/underscore.js b/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/underscore.js
deleted file mode 100644
index bddfdc9f..00000000
--- a/ecomp-portal-FE/client/bower_components/lodash/vendor/underscore/underscore.js
+++ /dev/null
@@ -1,1620 +0,0 @@
-// Underscore.js 1.8.3
-// http://underscorejs.org
-// (c) 2009-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
-// Underscore may be freely distributed under the MIT license.
-
-(function() {
-
- // Baseline setup
- // --------------
-
- // Establish the root object, `window` (`self`) in the browser, `global`
- // on the server, or `this` in some virtual machines. We use `self`
- // instead of `window` for `WebWorker` support.
- var root = typeof self == 'object' && self.self === self && self ||
- typeof global == 'object' && global.global === global && global ||
- this;
-
- // Save the previous value of the `_` variable.
- var previousUnderscore = root._;
-
- // Save bytes in the minified (but not gzipped) version:
- var ArrayProto = Array.prototype, ObjProto = Object.prototype;
- var SymbolProto = typeof Symbol !== 'undefined' ? Symbol.prototype : null;
-
- // Create quick reference variables for speed access to core prototypes.
- var push = ArrayProto.push,
- slice = ArrayProto.slice,
- toString = ObjProto.toString,
- hasOwnProperty = ObjProto.hasOwnProperty;
-
- // All **ECMAScript 5** native function implementations that we hope to use
- // are declared here.
- var nativeIsArray = Array.isArray,
- nativeKeys = Object.keys,
- nativeCreate = Object.create;
-
- // Naked function reference for surrogate-prototype-swapping.
- var Ctor = function(){};
-
- // Create a safe reference to the Underscore object for use below.
- var _ = function(obj) {
- if (obj instanceof _) return obj;
- if (!(this instanceof _)) return new _(obj);
- this._wrapped = obj;
- };
-
- // Export the Underscore object for **Node.js**, with
- // backwards-compatibility for their old module API. If we're in
- // the browser, add `_` as a global object.
- // (`nodeType` is checked to ensure that `module`
- // and `exports` are not HTML elements.)
- if (typeof exports != 'undefined' && !exports.nodeType) {
- if (typeof module != 'undefined' && !module.nodeType && module.exports) {
- exports = module.exports = _;
- }
- exports._ = _;
- } else {
- root._ = _;
- }
-
- // Current version.
- _.VERSION = '1.8.3';
-
- // Internal function that returns an efficient (for current engines) version
- // of the passed-in callback, to be repeatedly applied in other Underscore
- // functions.
- var optimizeCb = function(func, context, argCount) {
- if (context === void 0) return func;
- switch (argCount == null ? 3 : argCount) {
- case 1: return function(value) {
- return func.call(context, value);
- };
- // The 2-parameter case has been omitted only because no current consumers
- // made use of it.
- case 3: return function(value, index, collection) {
- return func.call(context, value, index, collection);
- };
- case 4: return function(accumulator, value, index, collection) {
- return func.call(context, accumulator, value, index, collection);
- };
- }
- return function() {
- return func.apply(context, arguments);
- };
- };
-
- // An internal function to generate callbacks that can be applied to each
- // element in a collection, returning the desired result — either `identity`,
- // an arbitrary callback, a property matcher, or a property accessor.
- var cb = function(value, context, argCount) {
- if (value == null) return _.identity;
- if (_.isFunction(value)) return optimizeCb(value, context, argCount);
- if (_.isObject(value)) return _.matcher(value);
- return _.property(value);
- };
-
- // An external wrapper for the internal callback generator.
- _.iteratee = function(value, context) {
- return cb(value, context, Infinity);
- };
-
- // Similar to ES6's rest param (http://ariya.ofilabs.com/2013/03/es6-and-rest-parameter.html)
- // This accumulates the arguments passed into an array, after a given index.
- var restArgs = function(func, startIndex) {
- startIndex = startIndex == null ? func.length - 1 : +startIndex;
- return function() {
- var length = Math.max(arguments.length - startIndex, 0);
- var rest = Array(length);
- for (var index = 0; index < length; index++) {
- rest[index] = arguments[index + startIndex];
- }
- switch (startIndex) {
- case 0: return func.call(this, rest);
- case 1: return func.call(this, arguments[0], rest);
- case 2: return func.call(this, arguments[0], arguments[1], rest);
- }
- var args = Array(startIndex + 1);
- for (index = 0; index < startIndex; index++) {
- args[index] = arguments[index];
- }
- args[startIndex] = rest;
- return func.apply(this, args);
- };
- };
-
- // An internal function for creating a new object that inherits from another.
- var baseCreate = function(prototype) {
- if (!_.isObject(prototype)) return {};
- if (nativeCreate) return nativeCreate(prototype);
- Ctor.prototype = prototype;
- var result = new Ctor;
- Ctor.prototype = null;
- return result;
- };
-
- var property = function(key) {
- return function(obj) {
- return obj == null ? void 0 : obj[key];
- };
- };
-
- // Helper for collection methods to determine whether a collection
- // should be iterated as an array or as an object.
- // Related: http://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength
- // Avoids a very nasty iOS 8 JIT bug on ARM-64. #2094
- var MAX_ARRAY_INDEX = Math.pow(2, 53) - 1;
- var getLength = property('length');
- var isArrayLike = function(collection) {
- var length = getLength(collection);
- return typeof length == 'number' && length >= 0 && length <= MAX_ARRAY_INDEX;
- };
-
- // Collection Functions
- // --------------------
-
- // The cornerstone, an `each` implementation, aka `forEach`.
- // Handles raw objects in addition to array-likes. Treats all
- // sparse array-likes as if they were dense.
- _.each = _.forEach = function(obj, iteratee, context) {
- iteratee = optimizeCb(iteratee, context);
- var i, length;
- if (isArrayLike(obj)) {
- for (i = 0, length = obj.length; i < length; i++) {
- iteratee(obj[i], i, obj);
- }
- } else {
- var keys = _.keys(obj);
- for (i = 0, length = keys.length; i < length; i++) {
- iteratee(obj[keys[i]], keys[i], obj);
- }
- }
- return obj;
- };
-
- // Return the results of applying the iteratee to each element.
- _.map = _.collect = function(obj, iteratee, context) {
- iteratee = cb(iteratee, context);
- var keys = !isArrayLike(obj) && _.keys(obj),
- length = (keys || obj).length,
- results = Array(length);
- for (var index = 0; index < length; index++) {
- var currentKey = keys ? keys[index] : index;
- results[index] = iteratee(obj[currentKey], currentKey, obj);
- }
- return results;
- };
-
- // Create a reducing function iterating left or right.
- var createReduce = function(dir) {
- // Wrap code that reassigns argument variables in a separate function than
- // the one that accesses `arguments.length` to avoid a perf hit. (#1991)
- var reducer = function(obj, iteratee, memo, initial) {
- var keys = !isArrayLike(obj) && _.keys(obj),
- length = (keys || obj).length,
- index = dir > 0 ? 0 : length - 1;
- if (!initial) {
- memo = obj[keys ? keys[index] : index];
- index += dir;
- }
- for (; index >= 0 && index < length; index += dir) {
- var currentKey = keys ? keys[index] : index;
- memo = iteratee(memo, obj[currentKey], currentKey, obj);
- }
- return memo;
- };
-
- return function(obj, iteratee, memo, context) {
- var initial = arguments.length >= 3;
- return reducer(obj, optimizeCb(iteratee, context, 4), memo, initial);
- };
- };
-
- // **Reduce** builds up a single result from a list of values, aka `inject`,
- // or `foldl`.
- _.reduce = _.foldl = _.inject = createReduce(1);
-
- // The right-associative version of reduce, also known as `foldr`.
- _.reduceRight = _.foldr = createReduce(-1);
-
- // Return the first value which passes a truth test. Aliased as `detect`.
- _.find = _.detect = function(obj, predicate, context) {
- var keyFinder = isArrayLike(obj) ? _.findIndex : _.findKey;
- var key = keyFinder(obj, predicate, context);
- if (key !== void 0 && key !== -1) return obj[key];
- };
-
- // Return all the elements that pass a truth test.
- // Aliased as `select`.
- _.filter = _.select = function(obj, predicate, context) {
- var results = [];
- predicate = cb(predicate, context);
- _.each(obj, function(value, index, list) {
- if (predicate(value, index, list)) results.push(value);
- });
- return results;
- };
-
- // Return all the elements for which a truth test fails.
- _.reject = function(obj, predicate, context) {
- return _.filter(obj, _.negate(cb(predicate)), context);
- };
-
- // Determine whether all of the elements match a truth test.
- // Aliased as `all`.
- _.every = _.all = function(obj, predicate, context) {
- predicate = cb(predicate, context);
- var keys = !isArrayLike(obj) && _.keys(obj),
- length = (keys || obj).length;
- for (var index = 0; index < length; index++) {
- var currentKey = keys ? keys[index] : index;
- if (!predicate(obj[currentKey], currentKey, obj)) return false;
- }
- return true;
- };
-
- // Determine if at least one element in the object matches a truth test.
- // Aliased as `any`.
- _.some = _.any = function(obj, predicate, context) {
- predicate = cb(predicate, context);
- var keys = !isArrayLike(obj) && _.keys(obj),
- length = (keys || obj).length;
- for (var index = 0; index < length; index++) {
- var currentKey = keys ? keys[index] : index;
- if (predicate(obj[currentKey], currentKey, obj)) return true;
- }
- return false;
- };
-
- // Determine if the array or object contains a given item (using `===`).
- // Aliased as `includes` and `include`.
- _.contains = _.includes = _.include = function(obj, item, fromIndex, guard) {
- if (!isArrayLike(obj)) obj = _.values(obj);
- if (typeof fromIndex != 'number' || guard) fromIndex = 0;
- return _.indexOf(obj, item, fromIndex) >= 0;
- };
-
- // Invoke a method (with arguments) on every item in a collection.
- _.invoke = restArgs(function(obj, method, args) {
- var isFunc = _.isFunction(method);
- return _.map(obj, function(value) {
- var func = isFunc ? method : value[method];
- return func == null ? func : func.apply(value, args);
- });
- });
-
- // Convenience version of a common use case of `map`: fetching a property.
- _.pluck = function(obj, key) {
- return _.map(obj, _.property(key));
- };
-
- // Convenience version of a common use case of `filter`: selecting only objects
- // containing specific `key:value` pairs.
- _.where = function(obj, attrs) {
- return _.filter(obj, _.matcher(attrs));
- };
-
- // Convenience version of a common use case of `find`: getting the first object
- // containing specific `key:value` pairs.
- _.findWhere = function(obj, attrs) {
- return _.find(obj, _.matcher(attrs));
- };
-
- // Return the maximum element (or element-based computation).
- _.max = function(obj, iteratee, context) {
- var result = -Infinity, lastComputed = -Infinity,
- value, computed;
- if (iteratee == null || (typeof iteratee == 'number' && typeof obj[0] != 'object') && obj != null) {
- obj = isArrayLike(obj) ? obj : _.values(obj);
- for (var i = 0, length = obj.length; i < length; i++) {
- value = obj[i];
- if (value != null && value > result) {
- result = value;
- }
- }
- } else {
- iteratee = cb(iteratee, context);
- _.each(obj, function(v, index, list) {
- computed = iteratee(v, index, list);
- if (computed > lastComputed || computed === -Infinity && result === -Infinity) {
- result = v;
- lastComputed = computed;
- }
- });
- }
- return result;
- };
-
- // Return the minimum element (or element-based computation).
- _.min = function(obj, iteratee, context) {
- var result = Infinity, lastComputed = Infinity,
- value, computed;
- if (iteratee == null || (typeof iteratee == 'number' && typeof obj[0] != 'object') && obj != null) {
- obj = isArrayLike(obj) ? obj : _.values(obj);
- for (var i = 0, length = obj.length; i < length; i++) {
- value = obj[i];
- if (value != null && value < result) {
- result = value;
- }
- }
- } else {
- iteratee = cb(iteratee, context);
- _.each(obj, function(v, index, list) {
- computed = iteratee(v, index, list);
- if (computed < lastComputed || computed === Infinity && result === Infinity) {
- result = v;
- lastComputed = computed;
- }
- });
- }
- return result;
- };
-
- // Shuffle a collection.
- _.shuffle = function(obj) {
- return _.sample(obj, Infinity);
- };
-
- // Sample **n** random values from a collection using the modern version of the
- // [Fisher-Yates shuffle](http://en.wikipedia.org/wiki/Fisher–Yates_shuffle).
- // If **n** is not specified, returns a single random element.
- // The internal `guard` argument allows it to work with `map`.
- _.sample = function(obj, n, guard) {
- if (n == null || guard) {
- if (!isArrayLike(obj)) obj = _.values(obj);
- return obj[_.random(obj.length - 1)];
- }
- var sample = isArrayLike(obj) ? _.clone(obj) : _.values(obj);
- var length = getLength(sample);
- n = Math.max(Math.min(n, length), 0);
- var last = length - 1;
- for (var index = 0; index < n; index++) {
- var rand = _.random(index, last);
- var temp = sample[index];
- sample[index] = sample[rand];
- sample[rand] = temp;
- }
- return sample.slice(0, n);
- };
-
- // Sort the object's values by a criterion produced by an iteratee.
- _.sortBy = function(obj, iteratee, context) {
- var index = 0;
- iteratee = cb(iteratee, context);
- return _.pluck(_.map(obj, function(value, key, list) {
- return {
- value: value,
- index: index++,
- criteria: iteratee(value, key, list)
- };
- }).sort(function(left, right) {
- var a = left.criteria;
- var b = right.criteria;
- if (a !== b) {
- if (a > b || a === void 0) return 1;
- if (a < b || b === void 0) return -1;
- }
- return left.index - right.index;
- }), 'value');
- };
-
- // An internal function used for aggregate "group by" operations.
- var group = function(behavior, partition) {
- return function(obj, iteratee, context) {
- var result = partition ? [[], []] : {};
- iteratee = cb(iteratee, context);
- _.each(obj, function(value, index) {
- var key = iteratee(value, index, obj);
- behavior(result, value, key);
- });
- return result;
- };
- };
-
- // Groups the object's values by a criterion. Pass either a string attribute
- // to group by, or a function that returns the criterion.
- _.groupBy = group(function(result, value, key) {
- if (_.has(result, key)) result[key].push(value); else result[key] = [value];
- });
-
- // Indexes the object's values by a criterion, similar to `groupBy`, but for
- // when you know that your index values will be unique.
- _.indexBy = group(function(result, value, key) {
- result[key] = value;
- });
-
- // Counts instances of an object that group by a certain criterion. Pass
- // either a string attribute to count by, or a function that returns the
- // criterion.
- _.countBy = group(function(result, value, key) {
- if (_.has(result, key)) result[key]++; else result[key] = 1;
- });
-
- var reStrSymbol = /[^\ud800-\udfff]|[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udfff]/g;
- // Safely create a real, live array from anything iterable.
- _.toArray = function(obj) {
- if (!obj) return [];
- if (_.isArray(obj)) return slice.call(obj);
- if (_.isString(obj)) {
- // Keep surrogate pair characters together
- return obj.match(reStrSymbol);
- }
- if (isArrayLike(obj)) return _.map(obj);
- return _.values(obj);
- };
-
- // Return the number of elements in an object.
- _.size = function(obj) {
- if (obj == null) return 0;
- return isArrayLike(obj) ? obj.length : _.keys(obj).length;
- };
-
- // Split a collection into two arrays: one whose elements all satisfy the given
- // predicate, and one whose elements all do not satisfy the predicate.
- _.partition = group(function(result, value, pass) {
- result[pass ? 0 : 1].push(value);
- }, true);
-
- // Array Functions
- // ---------------
-
- // Get the first element of an array. Passing **n** will return the first N
- // values in the array. Aliased as `head` and `take`. The **guard** check
- // allows it to work with `_.map`.
- _.first = _.head = _.take = function(array, n, guard) {
- if (array == null) return void 0;
- if (n == null || guard) return array[0];
- return _.initial(array, array.length - n);
- };
-
- // Returns everything but the last entry of the array. Especially useful on
- // the arguments object. Passing **n** will return all the values in
- // the array, excluding the last N.
- _.initial = function(array, n, guard) {
- return slice.call(array, 0, Math.max(0, array.length - (n == null || guard ? 1 : n)));
- };
-
- // Get the last element of an array. Passing **n** will return the last N
- // values in the array.
- _.last = function(array, n, guard) {
- if (array == null) return void 0;
- if (n == null || guard) return array[array.length - 1];
- return _.rest(array, Math.max(0, array.length - n));
- };
-
- // Returns everything but the first entry of the array. Aliased as `tail` and `drop`.
- // Especially useful on the arguments object. Passing an **n** will return
- // the rest N values in the array.
- _.rest = _.tail = _.drop = function(array, n, guard) {
- return slice.call(array, n == null || guard ? 1 : n);
- };
-
- // Trim out all falsy values from an array.
- _.compact = function(array) {
- return _.filter(array);
- };
-
- // Internal implementation of a recursive `flatten` function.
- var flatten = function(input, shallow, strict, output) {
- output = output || [];
- var idx = output.length;
- for (var i = 0, length = getLength(input); i < length; i++) {
- var value = input[i];
- if (isArrayLike(value) && (_.isArray(value) || _.isArguments(value))) {
- // Flatten current level of array or arguments object.
- if (shallow) {
- var j = 0, len = value.length;
- while (j < len) output[idx++] = value[j++];
- } else {
- flatten(value, shallow, strict, output);
- idx = output.length;
- }
- } else if (!strict) {
- output[idx++] = value;
- }
- }
- return output;
- };
-
- // Flatten out an array, either recursively (by default), or just one level.
- _.flatten = function(array, shallow) {
- return flatten(array, shallow, false);
- };
-
- // Return a version of the array that does not contain the specified value(s).
- _.without = restArgs(function(array, otherArrays) {
- return _.difference(array, otherArrays);
- });
-
- // Produce a duplicate-free version of the array. If the array has already
- // been sorted, you have the option of using a faster algorithm.
- // Aliased as `unique`.
- _.uniq = _.unique = function(array, isSorted, iteratee, context) {
- if (!_.isBoolean(isSorted)) {
- context = iteratee;
- iteratee = isSorted;
- isSorted = false;
- }
- if (iteratee != null) iteratee = cb(iteratee, context);
- var result = [];
- var seen = [];
- for (var i = 0, length = getLength(array); i < length; i++) {
- var value = array[i],
- computed = iteratee ? iteratee(value, i, array) : value;
- if (isSorted) {
- if (!i || seen !== computed) result.push(value);
- seen = computed;
- } else if (iteratee) {
- if (!_.contains(seen, computed)) {
- seen.push(computed);
- result.push(value);
- }
- } else if (!_.contains(result, value)) {
- result.push(value);
- }
- }
- return result;
- };
-
- // Produce an array that contains the union: each distinct element from all of
- // the passed-in arrays.
- _.union = restArgs(function(arrays) {
- return _.uniq(flatten(arrays, true, true));
- });
-
- // Produce an array that contains every item shared between all the
- // passed-in arrays.
- _.intersection = function(array) {
- var result = [];
- var argsLength = arguments.length;
- for (var i = 0, length = getLength(array); i < length; i++) {
- var item = array[i];
- if (_.contains(result, item)) continue;
- var j;
- for (j = 1; j < argsLength; j++) {
- if (!_.contains(arguments[j], item)) break;
- }
- if (j === argsLength) result.push(item);
- }
- return result;
- };
-
- // Take the difference between one array and a number of other arrays.
- // Only the elements present in just the first array will remain.
- _.difference = restArgs(function(array, rest) {
- rest = flatten(rest, true, true);
- return _.filter(array, function(value){
- return !_.contains(rest, value);
- });
- });
-
- // Complement of _.zip. Unzip accepts an array of arrays and groups
- // each array's elements on shared indices.
- _.unzip = function(array) {
- var length = array && _.max(array, getLength).length || 0;
- var result = Array(length);
-
- for (var index = 0; index < length; index++) {
- result[index] = _.pluck(array, index);
- }
- return result;
- };
-
- // Zip together multiple lists into a single array -- elements that share
- // an index go together.
- _.zip = restArgs(_.unzip);
-
- // Converts lists into objects. Pass either a single array of `[key, value]`
- // pairs, or two parallel arrays of the same length -- one of keys, and one of
- // the corresponding values.
- _.object = function(list, values) {
- var result = {};
- for (var i = 0, length = getLength(list); i < length; i++) {
- if (values) {
- result[list[i]] = values[i];
- } else {
- result[list[i][0]] = list[i][1];
- }
- }
- return result;
- };
-
- // Generator function to create the findIndex and findLastIndex functions.
- var createPredicateIndexFinder = function(dir) {
- return function(array, predicate, context) {
- predicate = cb(predicate, context);
- var length = getLength(array);
- var index = dir > 0 ? 0 : length - 1;
- for (; index >= 0 && index < length; index += dir) {
- if (predicate(array[index], index, array)) return index;
- }
- return -1;
- };
- };
-
- // Returns the first index on an array-like that passes a predicate test.
- _.findIndex = createPredicateIndexFinder(1);
- _.findLastIndex = createPredicateIndexFinder(-1);
-
- // Use a comparator function to figure out the smallest index at which
- // an object should be inserted so as to maintain order. Uses binary search.
- _.sortedIndex = function(array, obj, iteratee, context) {
- iteratee = cb(iteratee, context, 1);
- var value = iteratee(obj);
- var low = 0, high = getLength(array);
- while (low < high) {
- var mid = Math.floor((low + high) / 2);
- if (iteratee(array[mid]) < value) low = mid + 1; else high = mid;
- }
- return low;
- };
-
- // Generator function to create the indexOf and lastIndexOf functions.
- var createIndexFinder = function(dir, predicateFind, sortedIndex) {
- return function(array, item, idx) {
- var i = 0, length = getLength(array);
- if (typeof idx == 'number') {
- if (dir > 0) {
- i = idx >= 0 ? idx : Math.max(idx + length, i);
- } else {
- length = idx >= 0 ? Math.min(idx + 1, length) : idx + length + 1;
- }
- } else if (sortedIndex && idx && length) {
- idx = sortedIndex(array, item);
- return array[idx] === item ? idx : -1;
- }
- if (item !== item) {
- idx = predicateFind(slice.call(array, i, length), _.isNaN);
- return idx >= 0 ? idx + i : -1;
- }
- for (idx = dir > 0 ? i : length - 1; idx >= 0 && idx < length; idx += dir) {
- if (array[idx] === item) return idx;
- }
- return -1;
- };
- };
-
- // Return the position of the first occurrence of an item in an array,
- // or -1 if the item is not included in the array.
- // If the array is large and already in sort order, pass `true`
- // for **isSorted** to use binary search.
- _.indexOf = createIndexFinder(1, _.findIndex, _.sortedIndex);
- _.lastIndexOf = createIndexFinder(-1, _.findLastIndex);
-
- // Generate an integer Array containing an arithmetic progression. A port of
- // the native Python `range()` function. See
- // [the Python documentation](http://docs.python.org/library/functions.html#range).
- _.range = function(start, stop, step) {
- if (stop == null) {
- stop = start || 0;
- start = 0;
- }
- if (!step) {
- step = stop < start ? -1 : 1;
- }
-
- var length = Math.max(Math.ceil((stop - start) / step), 0);
- var range = Array(length);
-
- for (var idx = 0; idx < length; idx++, start += step) {
- range[idx] = start;
- }
-
- return range;
- };
-
- // Split an **array** into several arrays containing **count** or less elements
- // of initial array.
- _.chunk = function(array, count) {
- if (count == null || count < 1) return [];
-
- var result = [];
- var i = 0, length = array.length;
- while (i < length) {
- result.push(slice.call(array, i, i += count));
- }
- return result;
- };
-
- // Function (ahem) Functions
- // ------------------
-
- // Determines whether to execute a function as a constructor
- // or a normal function with the provided arguments.
- var executeBound = function(sourceFunc, boundFunc, context, callingContext, args) {
- if (!(callingContext instanceof boundFunc)) return sourceFunc.apply(context, args);
- var self = baseCreate(sourceFunc.prototype);
- var result = sourceFunc.apply(self, args);
- if (_.isObject(result)) return result;
- return self;
- };
-
- // Create a function bound to a given object (assigning `this`, and arguments,
- // optionally). Delegates to **ECMAScript 5**'s native `Function.bind` if
- // available.
- _.bind = restArgs(function(func, context, args) {
- if (!_.isFunction(func)) throw new TypeError('Bind must be called on a function');
- var bound = restArgs(function(callArgs) {
- return executeBound(func, bound, context, this, args.concat(callArgs));
- });
- return bound;
- });
-
- // Partially apply a function by creating a version that has had some of its
- // arguments pre-filled, without changing its dynamic `this` context. _ acts
- // as a placeholder by default, allowing any combination of arguments to be
- // pre-filled. Set `_.partial.placeholder` for a custom placeholder argument.
- _.partial = restArgs(function(func, boundArgs) {
- var placeholder = _.partial.placeholder;
- var bound = function() {
- var position = 0, length = boundArgs.length;
- var args = Array(length);
- for (var i = 0; i < length; i++) {
- args[i] = boundArgs[i] === placeholder ? arguments[position++] : boundArgs[i];
- }
- while (position < arguments.length) args.push(arguments[position++]);
- return executeBound(func, bound, this, this, args);
- };
- return bound;
- });
-
- _.partial.placeholder = _;
-
- // Bind a number of an object's methods to that object. Remaining arguments
- // are the method names to be bound. Useful for ensuring that all callbacks
- // defined on an object belong to it.
- _.bindAll = restArgs(function(obj, keys) {
- keys = flatten(keys, false, false);
- var index = keys.length;
- if (index < 1) throw new Error('bindAll must be passed function names');
- while (index--) {
- var key = keys[index];
- obj[key] = _.bind(obj[key], obj);
- }
- });
-
- // Memoize an expensive function by storing its results.
- _.memoize = function(func, hasher) {
- var memoize = function(key) {
- var cache = memoize.cache;
- var address = '' + (hasher ? hasher.apply(this, arguments) : key);
- if (!_.has(cache, address)) cache[address] = func.apply(this, arguments);
- return cache[address];
- };
- memoize.cache = {};
- return memoize;
- };
-
- // Delays a function for the given number of milliseconds, and then calls
- // it with the arguments supplied.
- _.delay = restArgs(function(func, wait, args) {
- return setTimeout(function() {
- return func.apply(null, args);
- }, wait);
- });
-
- // Defers a function, scheduling it to run after the current call stack has
- // cleared.
- _.defer = _.partial(_.delay, _, 1);
-
- // Returns a function, that, when invoked, will only be triggered at most once
- // during a given window of time. Normally, the throttled function will run
- // as much as it can, without ever going more than once per `wait` duration;
- // but if you'd like to disable the execution on the leading edge, pass
- // `{leading: false}`. To disable execution on the trailing edge, ditto.
- _.throttle = function(func, wait, options) {
- var timeout, context, args, result;
- var previous = 0;
- if (!options) options = {};
-
- var later = function() {
- previous = options.leading === false ? 0 : _.now();
- timeout = null;
- result = func.apply(context, args);
- if (!timeout) context = args = null;
- };
-
- var throttled = function() {
- var now = _.now();
- if (!previous && options.leading === false) previous = now;
- var remaining = wait - (now - previous);
- context = this;
- args = arguments;
- if (remaining <= 0 || remaining > wait) {
- if (timeout) {
- clearTimeout(timeout);
- timeout = null;
- }
- previous = now;
- result = func.apply(context, args);
- if (!timeout) context = args = null;
- } else if (!timeout && options.trailing !== false) {
- timeout = setTimeout(later, remaining);
- }
- return result;
- };
-
- throttled.cancel = function() {
- clearTimeout(timeout);
- previous = 0;
- timeout = context = args = null;
- };
-
- return throttled;
- };
-
- // Returns a function, that, as long as it continues to be invoked, will not
- // be triggered. The function will be called after it stops being called for
- // N milliseconds. If `immediate` is passed, trigger the function on the
- // leading edge, instead of the trailing.
- _.debounce = function(func, wait, immediate) {
- var timeout, result;
-
- var later = function(context, args) {
- timeout = null;
- if (args) result = func.apply(context, args);
- };
-
- var debounced = restArgs(function(args) {
- if (timeout) clearTimeout(timeout);
- if (immediate) {
- var callNow = !timeout;
- timeout = setTimeout(later, wait);
- if (callNow) result = func.apply(this, args);
- } else {
- timeout = _.delay(later, wait, this, args);
- }
-
- return result;
- });
-
- debounced.cancel = function() {
- clearTimeout(timeout);
- timeout = null;
- };
-
- return debounced;
- };
-
- // Returns the first function passed as an argument to the second,
- // allowing you to adjust arguments, run code before and after, and
- // conditionally execute the original function.
- _.wrap = function(func, wrapper) {
- return _.partial(wrapper, func);
- };
-
- // Returns a negated version of the passed-in predicate.
- _.negate = function(predicate) {
- return function() {
- return !predicate.apply(this, arguments);
- };
- };
-
- // Returns a function that is the composition of a list of functions, each
- // consuming the return value of the function that follows.
- _.compose = function() {
- var args = arguments;
- var start = args.length - 1;
- return function() {
- var i = start;
- var result = args[start].apply(this, arguments);
- while (i--) result = args[i].call(this, result);
- return result;
- };
- };
-
- // Returns a function that will only be executed on and after the Nth call.
- _.after = function(times, func) {
- return function() {
- if (--times < 1) {
- return func.apply(this, arguments);
- }
- };
- };
-
- // Returns a function that will only be executed up to (but not including) the Nth call.
- _.before = function(times, func) {
- var memo;
- return function() {
- if (--times > 0) {
- memo = func.apply(this, arguments);
- }
- if (times <= 1) func = null;
- return memo;
- };
- };
-
- // Returns a function that will be executed at most one time, no matter how
- // often you call it. Useful for lazy initialization.
- _.once = _.partial(_.before, 2);
-
- _.restArgs = restArgs;
-
- // Object Functions
- // ----------------
-
- // Keys in IE < 9 that won't be iterated by `for key in ...` and thus missed.
- var hasEnumBug = !{toString: null}.propertyIsEnumerable('toString');
- var nonEnumerableProps = ['valueOf', 'isPrototypeOf', 'toString',
- 'propertyIsEnumerable', 'hasOwnProperty', 'toLocaleString'];
-
- var collectNonEnumProps = function(obj, keys) {
- var nonEnumIdx = nonEnumerableProps.length;
- var constructor = obj.constructor;
- var proto = _.isFunction(constructor) && constructor.prototype || ObjProto;
-
- // Constructor is a special case.
- var prop = 'constructor';
- if (_.has(obj, prop) && !_.contains(keys, prop)) keys.push(prop);
-
- while (nonEnumIdx--) {
- prop = nonEnumerableProps[nonEnumIdx];
- if (prop in obj && obj[prop] !== proto[prop] && !_.contains(keys, prop)) {
- keys.push(prop);
- }
- }
- };
-
- // Retrieve the names of an object's own properties.
- // Delegates to **ECMAScript 5**'s native `Object.keys`.
- _.keys = function(obj) {
- if (!_.isObject(obj)) return [];
- if (nativeKeys) return nativeKeys(obj);
- var keys = [];
- for (var key in obj) if (_.has(obj, key)) keys.push(key);
- // Ahem, IE < 9.
- if (hasEnumBug) collectNonEnumProps(obj, keys);
- return keys;
- };
-
- // Retrieve all the property names of an object.
- _.allKeys = function(obj) {
- if (!_.isObject(obj)) return [];
- var keys = [];
- for (var key in obj) keys.push(key);
- // Ahem, IE < 9.
- if (hasEnumBug) collectNonEnumProps(obj, keys);
- return keys;
- };
-
- // Retrieve the values of an object's properties.
- _.values = function(obj) {
- var keys = _.keys(obj);
- var length = keys.length;
- var values = Array(length);
- for (var i = 0; i < length; i++) {
- values[i] = obj[keys[i]];
- }
- return values;
- };
-
- // Returns the results of applying the iteratee to each element of the object.
- // In contrast to _.map it returns an object.
- _.mapObject = function(obj, iteratee, context) {
- iteratee = cb(iteratee, context);
- var keys = _.keys(obj),
- length = keys.length,
- results = {};
- for (var index = 0; index < length; index++) {
- var currentKey = keys[index];
- results[currentKey] = iteratee(obj[currentKey], currentKey, obj);
- }
- return results;
- };
-
- // Convert an object into a list of `[key, value]` pairs.
- _.pairs = function(obj) {
- var keys = _.keys(obj);
- var length = keys.length;
- var pairs = Array(length);
- for (var i = 0; i < length; i++) {
- pairs[i] = [keys[i], obj[keys[i]]];
- }
- return pairs;
- };
-
- // Invert the keys and values of an object. The values must be serializable.
- _.invert = function(obj) {
- var result = {};
- var keys = _.keys(obj);
- for (var i = 0, length = keys.length; i < length; i++) {
- result[obj[keys[i]]] = keys[i];
- }
- return result;
- };
-
- // Return a sorted list of the function names available on the object.
- // Aliased as `methods`.
- _.functions = _.methods = function(obj) {
- var names = [];
- for (var key in obj) {
- if (_.isFunction(obj[key])) names.push(key);
- }
- return names.sort();
- };
-
- // An internal function for creating assigner functions.
- var createAssigner = function(keysFunc, defaults) {
- return function(obj) {
- var length = arguments.length;
- if (defaults) obj = Object(obj);
- if (length < 2 || obj == null) return obj;
- for (var index = 1; index < length; index++) {
- var source = arguments[index],
- keys = keysFunc(source),
- l = keys.length;
- for (var i = 0; i < l; i++) {
- var key = keys[i];
- if (!defaults || obj[key] === void 0) obj[key] = source[key];
- }
- }
- return obj;
- };
- };
-
- // Extend a given object with all the properties in passed-in object(s).
- _.extend = createAssigner(_.allKeys);
-
- // Assigns a given object with all the own properties in the passed-in object(s).
- // (https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object/assign)
- _.extendOwn = _.assign = createAssigner(_.keys);
-
- // Returns the first key on an object that passes a predicate test.
- _.findKey = function(obj, predicate, context) {
- predicate = cb(predicate, context);
- var keys = _.keys(obj), key;
- for (var i = 0, length = keys.length; i < length; i++) {
- key = keys[i];
- if (predicate(obj[key], key, obj)) return key;
- }
- };
-
- // Internal pick helper function to determine if `obj` has key `key`.
- var keyInObj = function(value, key, obj) {
- return key in obj;
- };
-
- // Return a copy of the object only containing the whitelisted properties.
- _.pick = restArgs(function(obj, keys) {
- var result = {}, iteratee = keys[0];
- if (obj == null) return result;
- if (_.isFunction(iteratee)) {
- if (keys.length > 1) iteratee = optimizeCb(iteratee, keys[1]);
- keys = _.allKeys(obj);
- } else {
- iteratee = keyInObj;
- keys = flatten(keys, false, false);
- obj = Object(obj);
- }
- for (var i = 0, length = keys.length; i < length; i++) {
- var key = keys[i];
- var value = obj[key];
- if (iteratee(value, key, obj)) result[key] = value;
- }
- return result;
- });
-
- // Return a copy of the object without the blacklisted properties.
- _.omit = restArgs(function(obj, keys) {
- var iteratee = keys[0], context;
- if (_.isFunction(iteratee)) {
- iteratee = _.negate(iteratee);
- if (keys.length > 1) context = keys[1];
- } else {
- keys = _.map(flatten(keys, false, false), String);
- iteratee = function(value, key) {
- return !_.contains(keys, key);
- };
- }
- return _.pick(obj, iteratee, context);
- });
-
- // Fill in a given object with default properties.
- _.defaults = createAssigner(_.allKeys, true);
-
- // Creates an object that inherits from the given prototype object.
- // If additional properties are provided then they will be added to the
- // created object.
- _.create = function(prototype, props) {
- var result = baseCreate(prototype);
- if (props) _.extendOwn(result, props);
- return result;
- };
-
- // Create a (shallow-cloned) duplicate of an object.
- _.clone = function(obj) {
- if (!_.isObject(obj)) return obj;
- return _.isArray(obj) ? obj.slice() : _.extend({}, obj);
- };
-
- // Invokes interceptor with the obj, and then returns obj.
- // The primary purpose of this method is to "tap into" a method chain, in
- // order to perform operations on intermediate results within the chain.
- _.tap = function(obj, interceptor) {
- interceptor(obj);
- return obj;
- };
-
- // Returns whether an object has a given set of `key:value` pairs.
- _.isMatch = function(object, attrs) {
- var keys = _.keys(attrs), length = keys.length;
- if (object == null) return !length;
- var obj = Object(object);
- for (var i = 0; i < length; i++) {
- var key = keys[i];
- if (attrs[key] !== obj[key] || !(key in obj)) return false;
- }
- return true;
- };
-
-
- // Internal recursive comparison function for `isEqual`.
- var eq, deepEq;
- eq = function(a, b, aStack, bStack) {
- // Identical objects are equal. `0 === -0`, but they aren't identical.
- // See the [Harmony `egal` proposal](http://wiki.ecmascript.org/doku.php?id=harmony:egal).
- if (a === b) return a !== 0 || 1 / a === 1 / b;
- // A strict comparison is necessary because `null == undefined`.
- if (a == null || b == null) return a === b;
- // `NaN`s are equivalent, but non-reflexive.
- if (a !== a) return b !== b;
- // Exhaust primitive checks
- var type = typeof a;
- if (type !== 'function' && type !== 'object' && typeof b != 'object') return false;
- return deepEq(a, b, aStack, bStack);
- };
-
- // Internal recursive comparison function for `isEqual`.
- deepEq = function(a, b, aStack, bStack) {
- // Unwrap any wrapped objects.
- if (a instanceof _) a = a._wrapped;
- if (b instanceof _) b = b._wrapped;
- // Compare `[[Class]]` names.
- var className = toString.call(a);
- if (className !== toString.call(b)) return false;
- switch (className) {
- // Strings, numbers, regular expressions, dates, and booleans are compared by value.
- case '[object RegExp]':
- // RegExps are coerced to strings for comparison (Note: '' + /a/i === '/a/i')
- case '[object String]':
- // Primitives and their corresponding object wrappers are equivalent; thus, `"5"` is
- // equivalent to `new String("5")`.
- return '' + a === '' + b;
- case '[object Number]':
- // `NaN`s are equivalent, but non-reflexive.
- // Object(NaN) is equivalent to NaN.
- if (+a !== +a) return +b !== +b;
- // An `egal` comparison is performed for other numeric values.
- return +a === 0 ? 1 / +a === 1 / b : +a === +b;
- case '[object Date]':
- case '[object Boolean]':
- // Coerce dates and booleans to numeric primitive values. Dates are compared by their
- // millisecond representations. Note that invalid dates with millisecond representations
- // of `NaN` are not equivalent.
- return +a === +b;
- case '[object Symbol]':
- return SymbolProto.valueOf.call(a) === SymbolProto.valueOf.call(b);
- }
-
- var areArrays = className === '[object Array]';
- if (!areArrays) {
- if (typeof a != 'object' || typeof b != 'object') return false;
-
- // Objects with different constructors are not equivalent, but `Object`s or `Array`s
- // from different frames are.
- var aCtor = a.constructor, bCtor = b.constructor;
- if (aCtor !== bCtor && !(_.isFunction(aCtor) && aCtor instanceof aCtor &&
- _.isFunction(bCtor) && bCtor instanceof bCtor)
- && ('constructor' in a && 'constructor' in b)) {
- return false;
- }
- }
- // Assume equality for cyclic structures. The algorithm for detecting cyclic
- // structures is adapted from ES 5.1 section 15.12.3, abstract operation `JO`.
-
- // Initializing stack of traversed objects.
- // It's done here since we only need them for objects and arrays comparison.
- aStack = aStack || [];
- bStack = bStack || [];
- var length = aStack.length;
- while (length--) {
- // Linear search. Performance is inversely proportional to the number of
- // unique nested structures.
- if (aStack[length] === a) return bStack[length] === b;
- }
-
- // Add the first object to the stack of traversed objects.
- aStack.push(a);
- bStack.push(b);
-
- // Recursively compare objects and arrays.
- if (areArrays) {
- // Compare array lengths to determine if a deep comparison is necessary.
- length = a.length;
- if (length !== b.length) return false;
- // Deep compare the contents, ignoring non-numeric properties.
- while (length--) {
- if (!eq(a[length], b[length], aStack, bStack)) return false;
- }
- } else {
- // Deep compare objects.
- var keys = _.keys(a), key;
- length = keys.length;
- // Ensure that both objects contain the same number of properties before comparing deep equality.
- if (_.keys(b).length !== length) return false;
- while (length--) {
- // Deep compare each member
- key = keys[length];
- if (!(_.has(b, key) && eq(a[key], b[key], aStack, bStack))) return false;
- }
- }
- // Remove the first object from the stack of traversed objects.
- aStack.pop();
- bStack.pop();
- return true;
- };
-
- // Perform a deep comparison to check if two objects are equal.
- _.isEqual = function(a, b) {
- return eq(a, b);
- };
-
- // Is a given array, string, or object empty?
- // An "empty" object has no enumerable own-properties.
- _.isEmpty = function(obj) {
- if (obj == null) return true;
- if (isArrayLike(obj) && (_.isArray(obj) || _.isString(obj) || _.isArguments(obj))) return obj.length === 0;
- return _.keys(obj).length === 0;
- };
-
- // Is a given value a DOM element?
- _.isElement = function(obj) {
- return !!(obj && obj.nodeType === 1);
- };
-
- // Is a given value an array?
- // Delegates to ECMA5's native Array.isArray
- _.isArray = nativeIsArray || function(obj) {
- return toString.call(obj) === '[object Array]';
- };
-
- // Is a given variable an object?
- _.isObject = function(obj) {
- var type = typeof obj;
- return type === 'function' || type === 'object' && !!obj;
- };
-
- // Add some isType methods: isArguments, isFunction, isString, isNumber, isDate, isRegExp, isError, isMap, isWeakMap, isSet, isWeakSet.
- _.each(['Arguments', 'Function', 'String', 'Number', 'Date', 'RegExp', 'Error', 'Symbol', 'Map', 'WeakMap', 'Set', 'WeakSet'], function(name) {
- _['is' + name] = function(obj) {
- return toString.call(obj) === '[object ' + name + ']';
- };
- });
-
- // Define a fallback version of the method in browsers (ahem, IE < 9), where
- // there isn't any inspectable "Arguments" type.
- if (!_.isArguments(arguments)) {
- _.isArguments = function(obj) {
- return _.has(obj, 'callee');
- };
- }
-
- // Optimize `isFunction` if appropriate. Work around some typeof bugs in old v8,
- // IE 11 (#1621), Safari 8 (#1929), and PhantomJS (#2236).
- var nodelist = root.document && root.document.childNodes;
- if (typeof /./ != 'function' && typeof Int8Array != 'object' && typeof nodelist != 'function') {
- _.isFunction = function(obj) {
- return typeof obj == 'function' || false;
- };
- }
-
- // Is a given object a finite number?
- _.isFinite = function(obj) {
- return !_.isSymbol(obj) && isFinite(obj) && !isNaN(parseFloat(obj));
- };
-
- // Is the given value `NaN`?
- _.isNaN = function(obj) {
- return _.isNumber(obj) && isNaN(obj);
- };
-
- // Is a given value a boolean?
- _.isBoolean = function(obj) {
- return obj === true || obj === false || toString.call(obj) === '[object Boolean]';
- };
-
- // Is a given value equal to null?
- _.isNull = function(obj) {
- return obj === null;
- };
-
- // Is a given variable undefined?
- _.isUndefined = function(obj) {
- return obj === void 0;
- };
-
- // Shortcut function for checking if an object has a given property directly
- // on itself (in other words, not on a prototype).
- _.has = function(obj, key) {
- return obj != null && hasOwnProperty.call(obj, key);
- };
-
- // Utility Functions
- // -----------------
-
- // Run Underscore.js in *noConflict* mode, returning the `_` variable to its
- // previous owner. Returns a reference to the Underscore object.
- _.noConflict = function() {
- root._ = previousUnderscore;
- return this;
- };
-
- // Keep the identity function around for default iteratees.
- _.identity = function(value) {
- return value;
- };
-
- // Predicate-generating functions. Often useful outside of Underscore.
- _.constant = function(value) {
- return function() {
- return value;
- };
- };
-
- _.noop = function(){};
-
- _.property = property;
-
- // Generates a function for a given object that returns a given property.
- _.propertyOf = function(obj) {
- return obj == null ? function(){} : function(key) {
- return obj[key];
- };
- };
-
- // Returns a predicate for checking whether an object has a given set of
- // `key:value` pairs.
- _.matcher = _.matches = function(attrs) {
- attrs = _.extendOwn({}, attrs);
- return function(obj) {
- return _.isMatch(obj, attrs);
- };
- };
-
- // Run a function **n** times.
- _.times = function(n, iteratee, context) {
- var accum = Array(Math.max(0, n));
- iteratee = optimizeCb(iteratee, context, 1);
- for (var i = 0; i < n; i++) accum[i] = iteratee(i);
- return accum;
- };
-
- // Return a random integer between min and max (inclusive).
- _.random = function(min, max) {
- if (max == null) {
- max = min;
- min = 0;
- }
- return min + Math.floor(Math.random() * (max - min + 1));
- };
-
- // A (possibly faster) way to get the current timestamp as an integer.
- _.now = Date.now || function() {
- return new Date().getTime();
- };
-
- // List of HTML entities for escaping.
- var escapeMap = {
- '&': '&amp;',
- '<': '&lt;',
- '>': '&gt;',
- '"': '&quot;',
- "'": '&#x27;',
- '`': '&#x60;'
- };
- var unescapeMap = _.invert(escapeMap);
-
- // Functions for escaping and unescaping strings to/from HTML interpolation.
- var createEscaper = function(map) {
- var escaper = function(match) {
- return map[match];
- };
- // Regexes for identifying a key that needs to be escaped.
- var source = '(?:' + _.keys(map).join('|') + ')';
- var testRegexp = RegExp(source);
- var replaceRegexp = RegExp(source, 'g');
- return function(string) {
- string = string == null ? '' : '' + string;
- return testRegexp.test(string) ? string.replace(replaceRegexp, escaper) : string;
- };
- };
- _.escape = createEscaper(escapeMap);
- _.unescape = createEscaper(unescapeMap);
-
- // If the value of the named `property` is a function then invoke it with the
- // `object` as context; otherwise, return it.
- _.result = function(object, prop, fallback) {
- var value = object == null ? void 0 : object[prop];
- if (value === void 0) {
- value = fallback;
- }
- return _.isFunction(value) ? value.call(object) : value;
- };
-
- // Generate a unique integer id (unique within the entire client session).
- // Useful for temporary DOM ids.
- var idCounter = 0;
- _.uniqueId = function(prefix) {
- var id = ++idCounter + '';
- return prefix ? prefix + id : id;
- };
-
- // By default, Underscore uses ERB-style template delimiters, change the
- // following template settings to use alternative delimiters.
- _.templateSettings = {
- evaluate: /<%([\s\S]+?)%>/g,
- interpolate: /<%=([\s\S]+?)%>/g,
- escape: /<%-([\s\S]+?)%>/g
- };
-
- // When customizing `templateSettings`, if you don't want to define an
- // interpolation, evaluation or escaping regex, we need one that is
- // guaranteed not to match.
- var noMatch = /(.)^/;
-
- // Certain characters need to be escaped so that they can be put into a
- // string literal.
- var escapes = {
- "'": "'",
- '\\': '\\',
- '\r': 'r',
- '\n': 'n',
- '\u2028': 'u2028',
- '\u2029': 'u2029'
- };
-
- var escapeRegExp = /\\|'|\r|\n|\u2028|\u2029/g;
-
- var escapeChar = function(match) {
- return '\\' + escapes[match];
- };
-
- // JavaScript micro-templating, similar to John Resig's implementation.
- // Underscore templating handles arbitrary delimiters, preserves whitespace,
- // and correctly escapes quotes within interpolated code.
- // NB: `oldSettings` only exists for backwards compatibility.
- _.template = function(text, settings, oldSettings) {
- if (!settings && oldSettings) settings = oldSettings;
- settings = _.defaults({}, settings, _.templateSettings);
-
- // Combine delimiters into one regular expression via alternation.
- var matcher = RegExp([
- (settings.escape || noMatch).source,
- (settings.interpolate || noMatch).source,
- (settings.evaluate || noMatch).source
- ].join('|') + '|$', 'g');
-
- // Compile the template source, escaping string literals appropriately.
- var index = 0;
- var source = "__p+='";
- text.replace(matcher, function(match, escape, interpolate, evaluate, offset) {
- source += text.slice(index, offset).replace(escapeRegExp, escapeChar);
- index = offset + match.length;
-
- if (escape) {
- source += "'+\n((__t=(" + escape + "))==null?'':_.escape(__t))+\n'";
- } else if (interpolate) {
- source += "'+\n((__t=(" + interpolate + "))==null?'':__t)+\n'";
- } else if (evaluate) {
- source += "';\n" + evaluate + "\n__p+='";
- }
-
- // Adobe VMs need the match returned to produce the correct offset.
- return match;
- });
- source += "';\n";
-
- // If a variable is not specified, place data values in local scope.
- if (!settings.variable) source = 'with(obj||{}){\n' + source + '}\n';
-
- source = "var __t,__p='',__j=Array.prototype.join," +
- "print=function(){__p+=__j.call(arguments,'');};\n" +
- source + 'return __p;\n';
-
- var render;
- try {
- render = new Function(settings.variable || 'obj', '_', source);
- } catch (e) {
- e.source = source;
- throw e;
- }
-
- var template = function(data) {
- return render.call(this, data, _);
- };
-
- // Provide the compiled source as a convenience for precompilation.
- var argument = settings.variable || 'obj';
- template.source = 'function(' + argument + '){\n' + source + '}';
-
- return template;
- };
-
- // Add a "chain" function. Start chaining a wrapped Underscore object.
- _.chain = function(obj) {
- var instance = _(obj);
- instance._chain = true;
- return instance;
- };
-
- // OOP
- // ---------------
- // If Underscore is called as a function, it returns a wrapped object that
- // can be used OO-style. This wrapper holds altered versions of all the
- // underscore functions. Wrapped objects may be chained.
-
- // Helper function to continue chaining intermediate results.
- var chainResult = function(instance, obj) {
- return instance._chain ? _(obj).chain() : obj;
- };
-
- // Add your own custom functions to the Underscore object.
- _.mixin = function(obj) {
- _.each(_.functions(obj), function(name) {
- var func = _[name] = obj[name];
- _.prototype[name] = function() {
- var args = [this._wrapped];
- push.apply(args, arguments);
- return chainResult(this, func.apply(_, args));
- };
- });
- };
-
- // Add all of the Underscore functions to the wrapper object.
- _.mixin(_);
-
- // Add all mutator Array functions to the wrapper.
- _.each(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) {
- var method = ArrayProto[name];
- _.prototype[name] = function() {
- var obj = this._wrapped;
- method.apply(obj, arguments);
- if ((name === 'shift' || name === 'splice') && obj.length === 0) delete obj[0];
- return chainResult(this, obj);
- };
- });
-
- // Add all accessor Array functions to the wrapper.
- _.each(['concat', 'join', 'slice'], function(name) {
- var method = ArrayProto[name];
- _.prototype[name] = function() {
- return chainResult(this, method.apply(this._wrapped, arguments));
- };
- });
-
- // Extracts the result from a wrapped and chained object.
- _.prototype.value = function() {
- return this._wrapped;
- };
-
- // Provide unwrapping proxy for some methods used in engine operations
- // such as arithmetic and JSON stringification.
- _.prototype.valueOf = _.prototype.toJSON = _.prototype.value;
-
- _.prototype.toString = function() {
- return '' + this._wrapped;
- };
-
- // AMD registration happens at the end for compatibility with AMD loaders
- // that may not enforce next-turn semantics on modules. Even though general
- // practice for AMD registration is to be anonymous, underscore registers
- // as a named module because, like jQuery, it is a base library that is
- // popular enough to be bundled in a third party lib, but not be part of
- // an AMD load request. Those cases could generate an error when an
- // anonymous define() is called outside of a loader request.
- if (typeof define == 'function' && define.amd) {
- define('underscore', [], function() {
- return _;
- });
- }
-}());