lodash-rails 2.4.0 → 2.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/lodash/rails/version.rb +1 -1
- data/vendor/assets/javascripts/lodash.compat.js +78 -59
- data/vendor/assets/javascripts/lodash.compat.min.js +51 -50
- data/vendor/assets/javascripts/lodash.js +79 -60
- data/vendor/assets/javascripts/lodash.min.js +48 -47
- data/vendor/assets/javascripts/lodash.underscore.js +37 -20
- data/vendor/assets/javascripts/lodash.underscore.min.js +35 -35
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dc05a505657e83676fe9d2293f53a408a77c598b
|
4
|
+
data.tar.gz: db880cde8b24d8f874a441c755c4f8d3b272a724
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db62424929dfc6faf922597db9791e133bf3f6a1a4e8d68fa11b04ed31475568dd6cb72d656d440634c157759410260e58045c933f700e91a02357282bedc1cf
|
7
|
+
data.tar.gz: 0c3cbf252d6ac701d793e0f605b6db8ae83c92baaeb83cef7b6f6a1920015e73d8be3b3fedc200864c65f9fb1bf6c5c03806741f6ff719a5d68b8125f8996f75
|
data/README.md
CHANGED
data/lib/lodash/rails/version.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/**
|
2
2
|
* @license
|
3
|
-
* Lo-Dash 2.4.
|
3
|
+
* Lo-Dash 2.4.1 (Custom Build) <http://lodash.com/>
|
4
4
|
* Build: `lodash -o ./dist/lodash.compat.js`
|
5
5
|
* Copyright 2012-2013 The Dojo Foundation <http://dojofoundation.org/>
|
6
6
|
* Based on Underscore.js 1.5.2 <http://underscorejs.org/LICENSE>
|
@@ -518,30 +518,31 @@
|
|
518
518
|
clearTimeout = context.clearTimeout,
|
519
519
|
floor = Math.floor,
|
520
520
|
fnToString = Function.prototype.toString,
|
521
|
-
getPrototypeOf =
|
521
|
+
getPrototypeOf = isNative(getPrototypeOf = Object.getPrototypeOf) && getPrototypeOf,
|
522
522
|
hasOwnProperty = objectProto.hasOwnProperty,
|
523
523
|
push = arrayRef.push,
|
524
524
|
propertyIsEnumerable = objectProto.propertyIsEnumerable,
|
525
525
|
setTimeout = context.setTimeout,
|
526
|
-
splice = arrayRef.splice
|
526
|
+
splice = arrayRef.splice,
|
527
|
+
unshift = arrayRef.unshift;
|
527
528
|
|
528
529
|
/** Used to set meta data on functions */
|
529
530
|
var defineProperty = (function() {
|
530
531
|
// IE 8 only accepts DOM elements
|
531
532
|
try {
|
532
533
|
var o = {},
|
533
|
-
func =
|
534
|
+
func = isNative(func = Object.defineProperty) && func,
|
534
535
|
result = func(o, o, o) && func;
|
535
536
|
} catch(e) { }
|
536
537
|
return result;
|
537
538
|
}());
|
538
539
|
|
539
540
|
/* Native method shortcuts for methods with the same name as other `lodash` methods */
|
540
|
-
var nativeCreate =
|
541
|
-
nativeIsArray =
|
541
|
+
var nativeCreate = isNative(nativeCreate = Object.create) && nativeCreate,
|
542
|
+
nativeIsArray = isNative(nativeIsArray = Array.isArray) && nativeIsArray,
|
542
543
|
nativeIsFinite = context.isFinite,
|
543
544
|
nativeIsNaN = context.isNaN,
|
544
|
-
nativeKeys =
|
545
|
+
nativeKeys = isNative(nativeKeys = Object.keys) && nativeKeys,
|
545
546
|
nativeMax = Math.max,
|
546
547
|
nativeMin = Math.min,
|
547
548
|
nativeParseInt = context.parseInt,
|
@@ -729,7 +730,7 @@
|
|
729
730
|
* @memberOf _.support
|
730
731
|
* @type boolean
|
731
732
|
*/
|
732
|
-
support.funcDecomp = !
|
733
|
+
support.funcDecomp = !isNative(context.WinRTError) && reThis.test(runInContext);
|
733
734
|
|
734
735
|
/**
|
735
736
|
* Detect if `Function#name` is supported (all but IE).
|
@@ -987,7 +988,10 @@
|
|
987
988
|
// `Function#bind` spec
|
988
989
|
// http://es5.github.io/#x15.3.4.5
|
989
990
|
if (partialArgs) {
|
990
|
-
|
991
|
+
// avoid `arguments` object deoptimizations by using `slice` instead
|
992
|
+
// of `Array.prototype.slice.call` and not assigning `arguments` to a
|
993
|
+
// variable as a ternary expression
|
994
|
+
var args = slice(partialArgs);
|
991
995
|
push.apply(args, arguments);
|
992
996
|
}
|
993
997
|
// mimic the constructor's `return` behavior
|
@@ -1204,7 +1208,7 @@
|
|
1204
1208
|
function bound() {
|
1205
1209
|
var thisBinding = isBind ? thisArg : this;
|
1206
1210
|
if (partialArgs) {
|
1207
|
-
var args =
|
1211
|
+
var args = slice(partialArgs);
|
1208
1212
|
push.apply(args, arguments);
|
1209
1213
|
}
|
1210
1214
|
if (partialRightArgs || isCurry) {
|
@@ -1429,51 +1433,54 @@
|
|
1429
1433
|
|
1430
1434
|
// recursively compare objects and arrays (susceptible to call stack limits)
|
1431
1435
|
if (isArr) {
|
1436
|
+
// compare lengths to determine if a deep comparison is necessary
|
1432
1437
|
length = a.length;
|
1433
1438
|
size = b.length;
|
1434
|
-
|
1435
|
-
|
1436
|
-
result
|
1437
|
-
|
1438
|
-
|
1439
|
-
|
1440
|
-
|
1441
|
-
|
1442
|
-
|
1443
|
-
|
1444
|
-
|
1445
|
-
|
1446
|
-
|
1447
|
-
if ((result = baseIsEqual(a[index], value, callback, isWhere, stackA, stackB))) {
|
1448
|
-
break;
|
1439
|
+
result = size == length;
|
1440
|
+
|
1441
|
+
if (result || isWhere) {
|
1442
|
+
// deep compare the contents, ignoring non-numeric properties
|
1443
|
+
while (size--) {
|
1444
|
+
var index = length,
|
1445
|
+
value = b[size];
|
1446
|
+
|
1447
|
+
if (isWhere) {
|
1448
|
+
while (index--) {
|
1449
|
+
if ((result = baseIsEqual(a[index], value, callback, isWhere, stackA, stackB))) {
|
1450
|
+
break;
|
1451
|
+
}
|
1449
1452
|
}
|
1453
|
+
} else if (!(result = baseIsEqual(a[size], value, callback, isWhere, stackA, stackB))) {
|
1454
|
+
break;
|
1450
1455
|
}
|
1451
|
-
} else if (!(result = baseIsEqual(a[size], value, callback, isWhere, stackA, stackB))) {
|
1452
|
-
break;
|
1453
1456
|
}
|
1454
1457
|
}
|
1455
|
-
return result;
|
1456
1458
|
}
|
1457
|
-
|
1458
|
-
|
1459
|
-
|
1460
|
-
|
1461
|
-
|
1462
|
-
|
1463
|
-
|
1464
|
-
|
1465
|
-
|
1466
|
-
});
|
1467
|
-
|
1468
|
-
if (result && !isWhere) {
|
1469
|
-
// ensure both objects have the same number of properties
|
1470
|
-
forIn(a, function(value, key, a) {
|
1471
|
-
if (hasOwnProperty.call(a, key)) {
|
1472
|
-
// `size` will be `-1` if `a` has more properties than `b`
|
1473
|
-
return (result = --size > -1);
|
1459
|
+
else {
|
1460
|
+
// deep compare objects using `forIn`, instead of `forOwn`, to avoid `Object.keys`
|
1461
|
+
// which, in this case, is more costly
|
1462
|
+
forIn(b, function(value, key, b) {
|
1463
|
+
if (hasOwnProperty.call(b, key)) {
|
1464
|
+
// count the number of properties.
|
1465
|
+
size++;
|
1466
|
+
// deep compare each property value.
|
1467
|
+
return (result = hasOwnProperty.call(a, key) && baseIsEqual(a[key], value, callback, isWhere, stackA, stackB));
|
1474
1468
|
}
|
1475
1469
|
});
|
1470
|
+
|
1471
|
+
if (result && !isWhere) {
|
1472
|
+
// ensure both objects have the same number of properties
|
1473
|
+
forIn(a, function(value, key, a) {
|
1474
|
+
if (hasOwnProperty.call(a, key)) {
|
1475
|
+
// `size` will be `-1` if `a` has more properties than `b`
|
1476
|
+
return (result = --size > -1);
|
1477
|
+
}
|
1478
|
+
});
|
1479
|
+
}
|
1476
1480
|
}
|
1481
|
+
stackA.pop();
|
1482
|
+
stackB.pop();
|
1483
|
+
|
1477
1484
|
if (initedStack) {
|
1478
1485
|
releaseArray(stackA);
|
1479
1486
|
releaseArray(stackB);
|
@@ -1580,13 +1587,8 @@
|
|
1580
1587
|
|
1581
1588
|
if (isLarge) {
|
1582
1589
|
var cache = createCache(seen);
|
1583
|
-
|
1584
|
-
|
1585
|
-
seen = cache;
|
1586
|
-
} else {
|
1587
|
-
isLarge = false;
|
1588
|
-
seen = callback ? seen : (releaseArray(seen), result);
|
1589
|
-
}
|
1590
|
+
indexOf = cacheIndexOf;
|
1591
|
+
seen = cache;
|
1590
1592
|
}
|
1591
1593
|
while (++index < length) {
|
1592
1594
|
var value = array[index],
|
@@ -1686,8 +1688,14 @@
|
|
1686
1688
|
}
|
1687
1689
|
var bindData = func && func.__bindData__;
|
1688
1690
|
if (bindData && bindData !== true) {
|
1689
|
-
|
1690
|
-
|
1691
|
+
// clone `bindData`
|
1692
|
+
bindData = slice(bindData);
|
1693
|
+
if (bindData[2]) {
|
1694
|
+
bindData[2] = slice(bindData[2]);
|
1695
|
+
}
|
1696
|
+
if (bindData[3]) {
|
1697
|
+
bindData[3] = slice(bindData[3]);
|
1698
|
+
}
|
1691
1699
|
// set `thisBinding` is not previously bound
|
1692
1700
|
if (isBind && !(bindData[1] & 1)) {
|
1693
1701
|
bindData[4] = thisArg;
|
@@ -1706,7 +1714,7 @@
|
|
1706
1714
|
}
|
1707
1715
|
// append partial right arguments
|
1708
1716
|
if (isPartialRight) {
|
1709
|
-
|
1717
|
+
unshift.apply(bindData[3] || (bindData[3] = []), partialRightArgs);
|
1710
1718
|
}
|
1711
1719
|
// merge flags
|
1712
1720
|
bindData[1] |= bitmask;
|
@@ -1789,6 +1797,17 @@
|
|
1789
1797
|
return result;
|
1790
1798
|
}
|
1791
1799
|
|
1800
|
+
/**
|
1801
|
+
* Checks if `value` is a native function.
|
1802
|
+
*
|
1803
|
+
* @private
|
1804
|
+
* @param {*} value The value to check.
|
1805
|
+
* @returns {boolean} Returns `true` if the `value` is a native function, else `false`.
|
1806
|
+
*/
|
1807
|
+
function isNative(value) {
|
1808
|
+
return typeof value == 'function' && reNative.test(value);
|
1809
|
+
}
|
1810
|
+
|
1792
1811
|
/**
|
1793
1812
|
* Sets `this` binding data on a given function.
|
1794
1813
|
*
|
@@ -2840,7 +2859,7 @@
|
|
2840
2859
|
return false;
|
2841
2860
|
}
|
2842
2861
|
var valueOf = value.valueOf,
|
2843
|
-
objProto =
|
2862
|
+
objProto = isNative(valueOf) && (objProto = getPrototypeOf(valueOf)) && getPrototypeOf(objProto);
|
2844
2863
|
|
2845
2864
|
return objProto
|
2846
2865
|
? (value == objProto || getPrototypeOf(value) == objProto)
|
@@ -5343,7 +5362,7 @@
|
|
5343
5362
|
}
|
5344
5363
|
|
5345
5364
|
/**
|
5346
|
-
* Creates an array that is the
|
5365
|
+
* Creates an array that is the symmetric difference of the provided arrays.
|
5347
5366
|
* See http://en.wikipedia.org/wiki/Symmetric_difference.
|
5348
5367
|
*
|
5349
5368
|
* @static
|
@@ -6312,7 +6331,7 @@
|
|
6312
6331
|
* _.defer(function() { console.log(_.now() - stamp); });
|
6313
6332
|
* // => logs the number of milliseconds it took for the deferred function to be called
|
6314
6333
|
*/
|
6315
|
-
var now =
|
6334
|
+
var now = isNative(now = Date.now) && now || function() {
|
6316
6335
|
return new Date().getTime();
|
6317
6336
|
};
|
6318
6337
|
|
@@ -7039,7 +7058,7 @@
|
|
7039
7058
|
* @memberOf _
|
7040
7059
|
* @type string
|
7041
7060
|
*/
|
7042
|
-
lodash.VERSION = '2.4.
|
7061
|
+
lodash.VERSION = '2.4.1';
|
7043
7062
|
|
7044
7063
|
// add "Chaining" functions to the wrapper
|
7045
7064
|
lodash.prototype.chain = wrapperChain;
|
@@ -1,60 +1,61 @@
|
|
1
1
|
/**
|
2
2
|
* @license
|
3
|
-
* Lo-Dash 2.4.
|
3
|
+
* Lo-Dash 2.4.1 (Custom Build) lodash.com/license | Underscore.js 1.5.2 underscorejs.org/LICENSE
|
4
4
|
* Build: `lodash -o ./dist/lodash.compat.js`
|
5
5
|
*/
|
6
6
|
;(function(){function n(n,t,e){e=(e||0)-1;for(var r=n?n.length:0;++e<r;)if(n[e]===t)return e;return-1}function t(t,e){var r=typeof e;if(t=t.l,"boolean"==r||null==e)return t[e]?0:-1;"number"!=r&&"string"!=r&&(r="object");var u="number"==r?e:b+e;return t=(t=t[r])&&t[u],"object"==r?t&&-1<n(t,e)?0:-1:t?0:-1}function e(n){var t=this.l,e=typeof n;if("boolean"==e||null==n)t[n]=true;else{"number"!=e&&"string"!=e&&(e="object");var r="number"==e?n:b+n,t=t[e]||(t[e]={});"object"==e?(t[r]||(t[r]=[])).push(n):t[r]=true
|
7
7
|
}}function r(n){return n.charCodeAt(0)}function u(n,t){for(var e=n.m,r=t.m,u=-1,o=e.length;++u<o;){var a=e[u],i=r[u];if(a!==i){if(a>i||typeof a=="undefined")return 1;if(a<i||typeof i=="undefined")return-1}}return n.n-t.n}function o(n){var t=-1,r=n.length,u=n[0],o=n[r/2|0],a=n[r-1];if(u&&typeof u=="object"&&o&&typeof o=="object"&&a&&typeof a=="object")return false;for(u=l(),u["false"]=u["null"]=u["true"]=u.undefined=false,o=l(),o.k=n,o.l=u,o.push=e;++t<r;)o.push(n[t]);return o}function a(n){return"\\"+Y[n]
|
8
8
|
}function i(){return v.pop()||[]}function l(){return y.pop()||{k:null,l:null,m:null,"false":false,n:0,"null":false,number:null,object:null,push:null,string:null,"true":false,undefined:false,o:null}}function f(n){return typeof n.toString!="function"&&typeof(n+"")=="string"}function c(n){n.length=0,v.length<w&&v.push(n)}function p(n){var t=n.l;t&&p(t),n.k=n.l=n.m=n.object=n.number=n.string=n.o=null,y.length<w&&y.push(n)}function s(n,t,e){t||(t=0),typeof e=="undefined"&&(e=n?n.length:0);var r=-1;e=e-t||0;for(var u=Array(0>e?0:e);++r<e;)u[r]=n[t+r];
|
9
|
-
return u}function g(e){function v(n){return n&&typeof n=="object"&&!
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
}function st(){Q.h=F,Q.b=Q.c=Q.g=Q.i="",Q.e="t",Q.j=true;for(var n,t=0;n=arguments[t];t++)for(var e in n)Q[e]=n[e];t=Q.a,Q.d=/^[^,]+/.exec(t)[0],n=
|
19
|
-
var u=[];if(
|
20
|
-
r+="}"}return(e.b||
|
21
|
-
}function mt(n){return n&&typeof n=="object"&&typeof n.length=="number"&&
|
22
|
-
}function Ct(n){return typeof n=="string"||n&&typeof n=="object"&&
|
23
|
-
});return r}function
|
24
|
-
return n}function
|
25
|
-
if(typeof t!="function"&&e&&e[t]===n&&(t=null),null==t&&
|
26
|
-
}),e}function
|
27
|
-
}function
|
28
|
-
}function Wt(){for(var n=1<arguments.length?arguments:arguments[0],t=-1,e=n?
|
29
|
-
var v=function(){var e=t-(
|
30
|
-
t&&(e||u.length)||(null==e&&(e=t),o=y,t=n,n=v,u=
|
31
|
-
}
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
return
|
40
|
-
|
41
|
-
|
42
|
-
};return
|
43
|
-
}
|
44
|
-
}
|
45
|
-
|
46
|
-
|
47
|
-
for(t=
|
48
|
-
},v.
|
49
|
-
},v.
|
50
|
-
return-1},v.
|
51
|
-
return
|
52
|
-
},v.
|
53
|
-
|
54
|
-
}
|
55
|
-
},
|
56
|
-
},v.
|
57
|
-
|
9
|
+
return u}function g(e){function v(n){return n&&typeof n=="object"&&!qe(n)&&we.call(n,"__wrapped__")?n:new y(n)}function y(n,t){this.__chain__=!!t,this.__wrapped__=n}function w(n){function t(){if(r){var n=s(r);je.apply(n,arguments)}if(this instanceof t){var o=nt(e.prototype),n=e.apply(o,n||arguments);return xt(n)?n:o}return e.apply(u,n||arguments)}var e=n[0],r=n[2],u=n[4];return ze(t,n),t}function Y(n,t,e,r,u){if(e){var o=e(n);if(typeof o!="undefined")return o}if(!xt(n))return n;var a=he.call(n);if(!V[a]||!Le.nodeClass&&f(n))return n;
|
10
|
+
var l=Te[a];switch(a){case L:case z:return new l(+n);case W:case M:return new l(n);case J:return o=l(n.source,S.exec(n)),o.lastIndex=n.lastIndex,o}if(a=qe(n),t){var p=!r;r||(r=i()),u||(u=i());for(var g=r.length;g--;)if(r[g]==n)return u[g];o=a?l(n.length):{}}else o=a?s(n):Ye({},n);return a&&(we.call(n,"index")&&(o.index=n.index),we.call(n,"input")&&(o.input=n.input)),t?(r.push(n),u.push(o),(a?Xe:tr)(n,function(n,a){o[a]=Y(n,t,e,r,u)}),p&&(c(r),c(u)),o):o}function nt(n){return xt(n)?Se(n):{}}function tt(n,t,e){if(typeof n!="function")return Ht;
|
11
|
+
if(typeof t=="undefined"||!("prototype"in n))return n;var r=n.__bindData__;if(typeof r=="undefined"&&(Le.funcNames&&(r=!n.name),r=r||!Le.funcDecomp,!r)){var u=be.call(n);Le.funcNames||(r=!A.test(u)),r||(r=B.test(u),ze(n,r))}if(false===r||true!==r&&1&r[1])return n;switch(e){case 1:return function(e){return n.call(t,e)};case 2:return function(e,r){return n.call(t,e,r)};case 3:return function(e,r,u){return n.call(t,e,r,u)};case 4:return function(e,r,u,o){return n.call(t,e,r,u,o)}}return Mt(n,t)}function et(n){function t(){var n=l?a:this;
|
12
|
+
if(u){var h=s(u);je.apply(h,arguments)}return(o||c)&&(h||(h=s(arguments)),o&&je.apply(h,o),c&&h.length<i)?(r|=16,et([e,p?r:-4&r,h,null,a,i])):(h||(h=arguments),f&&(e=n[g]),this instanceof t?(n=nt(e.prototype),h=e.apply(n,h),xt(h)?h:n):e.apply(n,h))}var e=n[0],r=n[1],u=n[2],o=n[3],a=n[4],i=n[5],l=1&r,f=2&r,c=4&r,p=8&r,g=e;return ze(t,n),t}function rt(e,r){var u=-1,a=ht(),i=e?e.length:0,l=i>=_&&a===n,f=[];if(l){var c=o(r);c?(a=t,r=c):l=false}for(;++u<i;)c=e[u],0>a(r,c)&&f.push(c);return l&&p(r),f}function ot(n,t,e,r){r=(r||0)-1;
|
13
|
+
for(var u=n?n.length:0,o=[];++r<u;){var a=n[r];if(a&&typeof a=="object"&&typeof a.length=="number"&&(qe(a)||dt(a))){t||(a=ot(a,t,e));var i=-1,l=a.length,f=o.length;for(o.length+=l;++i<l;)o[f++]=a[i]}else e||o.push(a)}return o}function at(n,t,e,r,u,o){if(e){var a=e(n,t);if(typeof a!="undefined")return!!a}if(n===t)return 0!==n||1/n==1/t;if(n===n&&!(n&&X[typeof n]||t&&X[typeof t]))return false;if(null==n||null==t)return n===t;var l=he.call(n),p=he.call(t);if(l==T&&(l=G),p==T&&(p=G),l!=p)return false;switch(l){case L:case z:return+n==+t;
|
14
|
+
case W:return n!=+n?t!=+t:0==n?1/n==1/t:n==+t;case J:case M:return n==ie(t)}if(p=l==$,!p){var s=we.call(n,"__wrapped__"),g=we.call(t,"__wrapped__");if(s||g)return at(s?n.__wrapped__:n,g?t.__wrapped__:t,e,r,u,o);if(l!=G||!Le.nodeClass&&(f(n)||f(t)))return false;if(l=!Le.argsObject&&dt(n)?oe:n.constructor,s=!Le.argsObject&&dt(t)?oe:t.constructor,l!=s&&!(jt(l)&&l instanceof l&&jt(s)&&s instanceof s)&&"constructor"in n&&"constructor"in t)return false}for(l=!u,u||(u=i()),o||(o=i()),s=u.length;s--;)if(u[s]==n)return o[s]==t;
|
15
|
+
var h=0,a=true;if(u.push(n),o.push(t),p){if(s=n.length,h=t.length,(a=h==s)||r)for(;h--;)if(p=s,g=t[h],r)for(;p--&&!(a=at(n[p],g,e,r,u,o)););else if(!(a=at(n[h],g,e,r,u,o)))break}else nr(t,function(t,i,l){return we.call(l,i)?(h++,a=we.call(n,i)&&at(n[i],t,e,r,u,o)):void 0}),a&&!r&&nr(n,function(n,t,e){return we.call(e,t)?a=-1<--h:void 0});return u.pop(),o.pop(),l&&(c(u),c(o)),a}function it(n,t,e,r,u){(qe(t)?Dt:tr)(t,function(t,o){var a,i,l=t,f=n[o];if(t&&((i=qe(t))||er(t))){for(l=r.length;l--;)if(a=r[l]==t){f=u[l];
|
16
|
+
break}if(!a){var c;e&&(l=e(f,t),c=typeof l!="undefined")&&(f=l),c||(f=i?qe(f)?f:[]:er(f)?f:{}),r.push(t),u.push(f),c||it(f,t,e,r,u)}}else e&&(l=e(f,t),typeof l=="undefined"&&(l=t)),typeof l!="undefined"&&(f=l);n[o]=f})}function lt(n,t){return n+de(Fe()*(t-n+1))}function ft(e,r,u){var a=-1,l=ht(),f=e?e.length:0,s=[],g=!r&&f>=_&&l===n,h=u||g?i():s;for(g&&(h=o(h),l=t);++a<f;){var v=e[a],y=u?u(v,a,e):v;(r?!a||h[h.length-1]!==y:0>l(h,y))&&((u||g)&&h.push(y),s.push(v))}return g?(c(h.k),p(h)):u&&c(h),s}function ct(n){return function(t,e,r){var u={};
|
17
|
+
if(e=v.createCallback(e,r,3),qe(t)){r=-1;for(var o=t.length;++r<o;){var a=t[r];n(u,a,e(a,r,t),t)}}else Xe(t,function(t,r,o){n(u,t,e(t,r,o),o)});return u}}function pt(n,t,e,r,u,o){var a=1&t,i=4&t,l=16&t,f=32&t;if(!(2&t||jt(n)))throw new le;l&&!e.length&&(t&=-17,l=e=false),f&&!r.length&&(t&=-33,f=r=false);var c=n&&n.__bindData__;return c&&true!==c?(c=s(c),c[2]&&(c[2]=s(c[2])),c[3]&&(c[3]=s(c[3])),!a||1&c[1]||(c[4]=u),!a&&1&c[1]&&(t|=8),!i||4&c[1]||(c[5]=o),l&&je.apply(c[2]||(c[2]=[]),e),f&&Ee.apply(c[3]||(c[3]=[]),r),c[1]|=t,pt.apply(null,c)):(1==t||17===t?w:et)([n,t,e,r,u,o])
|
18
|
+
}function st(){Q.h=F,Q.b=Q.c=Q.g=Q.i="",Q.e="t",Q.j=true;for(var n,t=0;n=arguments[t];t++)for(var e in n)Q[e]=n[e];t=Q.a,Q.d=/^[^,]+/.exec(t)[0],n=ee,t="return function("+t+"){",e=Q;var r="var n,t="+e.d+",E="+e.e+";if(!t)return E;"+e.i+";";e.b?(r+="var u=t.length;n=-1;if("+e.b+"){",Le.unindexedChars&&(r+="if(s(t)){t=t.split('')}"),r+="while(++n<u){"+e.g+";}}else{"):Le.nonEnumArgs&&(r+="var u=t.length;n=-1;if(u&&p(t)){while(++n<u){n+='';"+e.g+";}}else{"),Le.enumPrototypes&&(r+="var G=typeof t=='function';"),Le.enumErrorProps&&(r+="var F=t===k||t instanceof Error;");
|
19
|
+
var u=[];if(Le.enumPrototypes&&u.push('!(G&&n=="prototype")'),Le.enumErrorProps&&u.push('!(F&&(n=="message"||n=="name"))'),e.j&&e.f)r+="var C=-1,D=B[typeof t]&&v(t),u=D?D.length:0;while(++C<u){n=D[C];",u.length&&(r+="if("+u.join("&&")+"){"),r+=e.g+";",u.length&&(r+="}"),r+="}";else if(r+="for(n in t){",e.j&&u.push("m.call(t, n)"),u.length&&(r+="if("+u.join("&&")+"){"),r+=e.g+";",u.length&&(r+="}"),r+="}",Le.nonEnumShadows){for(r+="if(t!==A){var i=t.constructor,r=t===(i&&i.prototype),f=t===J?I:t===k?j:L.call(t),x=y[f];",k=0;7>k;k++)r+="n='"+e.h[k]+"';if((!(r&&x[n])&&m.call(t,n))",e.j||(r+="||(!x[n]&&t[n]!==A[n])"),r+="){"+e.g+"}";
|
20
|
+
r+="}"}return(e.b||Le.nonEnumArgs)&&(r+="}"),r+=e.c+";return E",n("d,j,k,m,o,p,q,s,v,A,B,y,I,J,L",t+r+"}")(tt,q,ce,we,d,dt,qe,kt,Q.f,pe,X,$e,M,se,he)}function gt(n){return Ve[n]}function ht(){var t=(t=v.indexOf)===zt?n:t;return t}function vt(n){return typeof n=="function"&&ve.test(n)}function yt(n){var t,e;return!n||he.call(n)!=G||(t=n.constructor,jt(t)&&!(t instanceof t))||!Le.argsClass&&dt(n)||!Le.nodeClass&&f(n)?false:Le.ownLast?(nr(n,function(n,t,r){return e=we.call(r,t),false}),false!==e):(nr(n,function(n,t){e=t
|
21
|
+
}),typeof e=="undefined"||we.call(n,e))}function mt(n){return He[n]}function dt(n){return n&&typeof n=="object"&&typeof n.length=="number"&&he.call(n)==T||false}function bt(n,t,e){var r=We(n),u=r.length;for(t=tt(t,e,3);u--&&(e=r[u],false!==t(n[e],e,n)););return n}function _t(n){var t=[];return nr(n,function(n,e){jt(n)&&t.push(e)}),t.sort()}function wt(n){for(var t=-1,e=We(n),r=e.length,u={};++t<r;){var o=e[t];u[n[o]]=o}return u}function jt(n){return typeof n=="function"}function xt(n){return!(!n||!X[typeof n])
|
22
|
+
}function Ct(n){return typeof n=="number"||n&&typeof n=="object"&&he.call(n)==W||false}function kt(n){return typeof n=="string"||n&&typeof n=="object"&&he.call(n)==M||false}function Et(n){for(var t=-1,e=We(n),r=e.length,u=Zt(r);++t<r;)u[t]=n[e[t]];return u}function Ot(n,t,e){var r=-1,u=ht(),o=n?n.length:0,a=false;return e=(0>e?Be(0,o+e):e)||0,qe(n)?a=-1<u(n,t,e):typeof o=="number"?a=-1<(kt(n)?n.indexOf(t,e):u(n,t,e)):Xe(n,function(n){return++r<e?void 0:!(a=n===t)}),a}function St(n,t,e){var r=true;if(t=v.createCallback(t,e,3),qe(n)){e=-1;
|
23
|
+
for(var u=n.length;++e<u&&(r=!!t(n[e],e,n)););}else Xe(n,function(n,e,u){return r=!!t(n,e,u)});return r}function At(n,t,e){var r=[];if(t=v.createCallback(t,e,3),qe(n)){e=-1;for(var u=n.length;++e<u;){var o=n[e];t(o,e,n)&&r.push(o)}}else Xe(n,function(n,e,u){t(n,e,u)&&r.push(n)});return r}function It(n,t,e){if(t=v.createCallback(t,e,3),!qe(n)){var r;return Xe(n,function(n,e,u){return t(n,e,u)?(r=n,false):void 0}),r}e=-1;for(var u=n.length;++e<u;){var o=n[e];if(t(o,e,n))return o}}function Dt(n,t,e){if(t&&typeof e=="undefined"&&qe(n)){e=-1;
|
24
|
+
for(var r=n.length;++e<r&&false!==t(n[e],e,n););}else Xe(n,t,e);return n}function Nt(n,t,e){var r=n,u=n?n.length:0;if(t=t&&typeof e=="undefined"?t:tt(t,e,3),qe(n))for(;u--&&false!==t(n[u],u,n););else{if(typeof u!="number")var o=We(n),u=o.length;else Le.unindexedChars&&kt(n)&&(r=n.split(""));Xe(n,function(n,e,a){return e=o?o[--u]:--u,t(r[e],e,a)})}return n}function Bt(n,t,e){var r=-1,u=n?n.length:0,o=Zt(typeof u=="number"?u:0);if(t=v.createCallback(t,e,3),qe(n))for(;++r<u;)o[r]=t(n[r],r,n);else Xe(n,function(n,e,u){o[++r]=t(n,e,u)
|
25
|
+
});return o}function Pt(n,t,e){var u=-1/0,o=u;if(typeof t!="function"&&e&&e[t]===n&&(t=null),null==t&&qe(n)){e=-1;for(var a=n.length;++e<a;){var i=n[e];i>o&&(o=i)}}else t=null==t&&kt(n)?r:v.createCallback(t,e,3),Xe(n,function(n,e,r){e=t(n,e,r),e>u&&(u=e,o=n)});return o}function Rt(n,t,e,r){var u=3>arguments.length;if(t=v.createCallback(t,r,4),qe(n)){var o=-1,a=n.length;for(u&&(e=n[++o]);++o<a;)e=t(e,n[o],o,n)}else Xe(n,function(n,r,o){e=u?(u=false,n):t(e,n,r,o)});return e}function Ft(n,t,e,r){var u=3>arguments.length;
|
26
|
+
return t=v.createCallback(t,r,4),Nt(n,function(n,r,o){e=u?(u=false,n):t(e,n,r,o)}),e}function Tt(n){var t=-1,e=n?n.length:0,r=Zt(typeof e=="number"?e:0);return Dt(n,function(n){var e=lt(0,++t);r[t]=r[e],r[e]=n}),r}function $t(n,t,e){var r;if(t=v.createCallback(t,e,3),qe(n)){e=-1;for(var u=n.length;++e<u&&!(r=t(n[e],e,n)););}else Xe(n,function(n,e,u){return!(r=t(n,e,u))});return!!r}function Lt(n,t,e){var r=0,u=n?n.length:0;if(typeof t!="number"&&null!=t){var o=-1;for(t=v.createCallback(t,e,3);++o<u&&t(n[o],o,n);)r++
|
27
|
+
}else if(r=t,null==r||e)return n?n[0]:h;return s(n,0,Pe(Be(0,r),u))}function zt(t,e,r){if(typeof r=="number"){var u=t?t.length:0;r=0>r?Be(0,u+r):r||0}else if(r)return r=Kt(t,e),t[r]===e?r:-1;return n(t,e,r)}function qt(n,t,e){if(typeof t!="number"&&null!=t){var r=0,u=-1,o=n?n.length:0;for(t=v.createCallback(t,e,3);++u<o&&t(n[u],u,n);)r++}else r=null==t||e?1:Be(0,t);return s(n,r)}function Kt(n,t,e,r){var u=0,o=n?n.length:u;for(e=e?v.createCallback(e,r,1):Ht,t=e(t);u<o;)r=u+o>>>1,e(n[r])<t?u=r+1:o=r;
|
28
|
+
return u}function Wt(n,t,e,r){return typeof t!="boolean"&&null!=t&&(r=e,e=typeof t!="function"&&r&&r[t]===n?null:t,t=false),null!=e&&(e=v.createCallback(e,r,3)),ft(n,t,e)}function Gt(){for(var n=1<arguments.length?arguments:arguments[0],t=-1,e=n?Pt(ar(n,"length")):0,r=Zt(0>e?0:e);++t<e;)r[t]=ar(n,t);return r}function Jt(n,t){var e=-1,r=n?n.length:0,u={};for(t||!r||qe(n[0])||(t=[]);++e<r;){var o=n[e];t?u[o]=t[e]:o&&(u[o[0]]=o[1])}return u}function Mt(n,t){return 2<arguments.length?pt(n,17,s(arguments,2),null,t):pt(n,1,null,null,t)
|
29
|
+
}function Vt(n,t,e){var r,u,o,a,i,l,f,c=0,p=false,s=true;if(!jt(n))throw new le;if(t=Be(0,t)||0,true===e)var g=true,s=false;else xt(e)&&(g=e.leading,p="maxWait"in e&&(Be(t,e.maxWait)||0),s="trailing"in e?e.trailing:s);var v=function(){var e=t-(ir()-a);0<e?l=Ce(v,e):(u&&me(u),e=f,u=l=f=h,e&&(c=ir(),o=n.apply(i,r),l||u||(r=i=null)))},y=function(){l&&me(l),u=l=f=h,(s||p!==t)&&(c=ir(),o=n.apply(i,r),l||u||(r=i=null))};return function(){if(r=arguments,a=ir(),i=this,f=s&&(l||!g),false===p)var e=g&&!l;else{u||g||(c=a);
|
30
|
+
var h=p-(a-c),m=0>=h;m?(u&&(u=me(u)),c=a,o=n.apply(i,r)):u||(u=Ce(y,h))}return m&&l?l=me(l):l||t===p||(l=Ce(v,t)),e&&(m=true,o=n.apply(i,r)),!m||l||u||(r=i=null),o}}function Ht(n){return n}function Ut(n,t,e){var r=true,u=t&&_t(t);t&&(e||u.length)||(null==e&&(e=t),o=y,t=n,n=v,u=_t(t)),false===e?r=false:xt(e)&&"chain"in e&&(r=e.chain);var o=n,a=jt(o);Dt(u,function(e){var u=n[e]=t[e];a&&(o.prototype[e]=function(){var t=this.__chain__,e=this.__wrapped__,a=[e];if(je.apply(a,arguments),a=u.apply(n,a),r||t){if(e===a&&xt(a))return this;
|
31
|
+
a=new o(a),a.__chain__=t}return a})})}function Qt(){}function Xt(n){return function(t){return t[n]}}function Yt(){return this.__wrapped__}e=e?ut.defaults(Z.Object(),e,ut.pick(Z,R)):Z;var Zt=e.Array,ne=e.Boolean,te=e.Date,ee=e.Function,re=e.Math,ue=e.Number,oe=e.Object,ae=e.RegExp,ie=e.String,le=e.TypeError,fe=[],ce=e.Error.prototype,pe=oe.prototype,se=ie.prototype,ge=e._,he=pe.toString,ve=ae("^"+ie(he).replace(/[.*+?^${}()|[\]\\]/g,"\\$&").replace(/toString| for [^\]]+/g,".*?")+"$"),ye=re.ceil,me=e.clearTimeout,de=re.floor,be=ee.prototype.toString,_e=vt(_e=oe.getPrototypeOf)&&_e,we=pe.hasOwnProperty,je=fe.push,xe=pe.propertyIsEnumerable,Ce=e.setTimeout,ke=fe.splice,Ee=fe.unshift,Oe=function(){try{var n={},t=vt(t=oe.defineProperty)&&t,e=t(n,n,n)&&t
|
32
|
+
}catch(r){}return e}(),Se=vt(Se=oe.create)&&Se,Ae=vt(Ae=Zt.isArray)&&Ae,Ie=e.isFinite,De=e.isNaN,Ne=vt(Ne=oe.keys)&&Ne,Be=re.max,Pe=re.min,Re=e.parseInt,Fe=re.random,Te={};Te[$]=Zt,Te[L]=ne,Te[z]=te,Te[K]=ee,Te[G]=oe,Te[W]=ue,Te[J]=ae,Te[M]=ie;var $e={};$e[$]=$e[z]=$e[W]={constructor:true,toLocaleString:true,toString:true,valueOf:true},$e[L]=$e[M]={constructor:true,toString:true,valueOf:true},$e[q]=$e[K]=$e[J]={constructor:true,toString:true},$e[G]={constructor:true},function(){for(var n=F.length;n--;){var t,e=F[n];
|
33
|
+
for(t in $e)we.call($e,t)&&!we.call($e[t],e)&&($e[t][e]=false)}}(),y.prototype=v.prototype;var Le=v.support={};!function(){var n=function(){this.x=1},t={0:1,length:1},r=[];n.prototype={valueOf:1,y:1};for(var u in new n)r.push(u);for(u in arguments);Le.argsClass=he.call(arguments)==T,Le.argsObject=arguments.constructor==oe&&!(arguments instanceof Zt),Le.enumErrorProps=xe.call(ce,"message")||xe.call(ce,"name"),Le.enumPrototypes=xe.call(n,"prototype"),Le.funcDecomp=!vt(e.WinRTError)&&B.test(g),Le.funcNames=typeof ee.name=="string",Le.nonEnumArgs=0!=u,Le.nonEnumShadows=!/valueOf/.test(r),Le.ownLast="x"!=r[0],Le.spliceObjects=(fe.splice.call(t,0,1),!t[0]),Le.unindexedChars="xx"!="x"[0]+oe("x")[0];
|
34
|
+
try{Le.nodeClass=!(he.call(document)==G&&!({toString:0}+""))}catch(o){Le.nodeClass=true}}(1),v.templateSettings={escape:/<%-([\s\S]+?)%>/g,evaluate:/<%([\s\S]+?)%>/g,interpolate:I,variable:"",imports:{_:v}},Se||(nt=function(){function n(){}return function(t){if(xt(t)){n.prototype=t;var r=new n;n.prototype=null}return r||e.Object()}}());var ze=Oe?function(n,t){U.value=t,Oe(n,"__bindData__",U)}:Qt;Le.argsClass||(dt=function(n){return n&&typeof n=="object"&&typeof n.length=="number"&&we.call(n,"callee")&&!xe.call(n,"callee")||false
|
35
|
+
});var qe=Ae||function(n){return n&&typeof n=="object"&&typeof n.length=="number"&&he.call(n)==$||false},Ke=st({a:"z",e:"[]",i:"if(!(B[typeof z]))return E",g:"E.push(n)"}),We=Ne?function(n){return xt(n)?Le.enumPrototypes&&typeof n=="function"||Le.nonEnumArgs&&n.length&&dt(n)?Ke(n):Ne(n):[]}:Ke,Ge={a:"g,e,K",i:"e=e&&typeof K=='undefined'?e:d(e,K,3)",b:"typeof u=='number'",v:We,g:"if(e(t[n],n,g)===false)return E"},Je={a:"z,H,l",i:"var a=arguments,b=0,c=typeof l=='number'?2:a.length;while(++b<c){t=a[b];if(t&&B[typeof t]){",v:We,g:"if(typeof E[n]=='undefined')E[n]=t[n]",c:"}}"},Me={i:"if(!B[typeof t])return E;"+Ge.i,b:false},Ve={"&":"&","<":"<",">":">",'"':""","'":"'"},He=wt(Ve),Ue=ae("("+We(He).join("|")+")","g"),Qe=ae("["+We(Ve).join("")+"]","g"),Xe=st(Ge),Ye=st(Je,{i:Je.i.replace(";",";if(c>3&&typeof a[c-2]=='function'){var e=d(a[--c-1],a[c--],2)}else if(c>2&&typeof a[c-1]=='function'){e=a[--c]}"),g:"E[n]=e?e(E[n],t[n]):t[n]"}),Ze=st(Je),nr=st(Ge,Me,{j:false}),tr=st(Ge,Me);
|
36
|
+
jt(/x/)&&(jt=function(n){return typeof n=="function"&&he.call(n)==K});var er=_e?function(n){if(!n||he.call(n)!=G||!Le.argsClass&&dt(n))return false;var t=n.valueOf,e=vt(t)&&(e=_e(t))&&_e(e);return e?n==e||_e(n)==e:yt(n)}:yt,rr=ct(function(n,t,e){we.call(n,e)?n[e]++:n[e]=1}),ur=ct(function(n,t,e){(we.call(n,e)?n[e]:n[e]=[]).push(t)}),or=ct(function(n,t,e){n[e]=t}),ar=Bt,ir=vt(ir=te.now)&&ir||function(){return(new te).getTime()},lr=8==Re(j+"08")?Re:function(n,t){return Re(kt(n)?n.replace(D,""):n,t||0)};
|
37
|
+
return v.after=function(n,t){if(!jt(t))throw new le;return function(){return 1>--n?t.apply(this,arguments):void 0}},v.assign=Ye,v.at=function(n){var t=arguments,e=-1,r=ot(t,true,false,1),t=t[2]&&t[2][t[1]]===n?1:r.length,u=Zt(t);for(Le.unindexedChars&&kt(n)&&(n=n.split(""));++e<t;)u[e]=n[r[e]];return u},v.bind=Mt,v.bindAll=function(n){for(var t=1<arguments.length?ot(arguments,true,false,1):_t(n),e=-1,r=t.length;++e<r;){var u=t[e];n[u]=pt(n[u],1,null,null,n)}return n},v.bindKey=function(n,t){return 2<arguments.length?pt(t,19,s(arguments,2),null,n):pt(t,3,null,null,n)
|
38
|
+
},v.chain=function(n){return n=new y(n),n.__chain__=true,n},v.compact=function(n){for(var t=-1,e=n?n.length:0,r=[];++t<e;){var u=n[t];u&&r.push(u)}return r},v.compose=function(){for(var n=arguments,t=n.length;t--;)if(!jt(n[t]))throw new le;return function(){for(var t=arguments,e=n.length;e--;)t=[n[e].apply(this,t)];return t[0]}},v.constant=function(n){return function(){return n}},v.countBy=rr,v.create=function(n,t){var e=nt(n);return t?Ye(e,t):e},v.createCallback=function(n,t,e){var r=typeof n;if(null==n||"function"==r)return tt(n,t,e);
|
39
|
+
if("object"!=r)return Xt(n);var u=We(n),o=u[0],a=n[o];return 1!=u.length||a!==a||xt(a)?function(t){for(var e=u.length,r=false;e--&&(r=at(t[u[e]],n[u[e]],null,true)););return r}:function(n){return n=n[o],a===n&&(0!==a||1/a==1/n)}},v.curry=function(n,t){return t=typeof t=="number"?t:+t||n.length,pt(n,4,null,null,null,t)},v.debounce=Vt,v.defaults=Ze,v.defer=function(n){if(!jt(n))throw new le;var t=s(arguments,1);return Ce(function(){n.apply(h,t)},1)},v.delay=function(n,t){if(!jt(n))throw new le;var e=s(arguments,2);
|
40
|
+
return Ce(function(){n.apply(h,e)},t)},v.difference=function(n){return rt(n,ot(arguments,true,true,1))},v.filter=At,v.flatten=function(n,t,e,r){return typeof t!="boolean"&&null!=t&&(r=e,e=typeof t!="function"&&r&&r[t]===n?null:t,t=false),null!=e&&(n=Bt(n,e,r)),ot(n,t)},v.forEach=Dt,v.forEachRight=Nt,v.forIn=nr,v.forInRight=function(n,t,e){var r=[];nr(n,function(n,t){r.push(t,n)});var u=r.length;for(t=tt(t,e,3);u--&&false!==t(r[u--],r[u],n););return n},v.forOwn=tr,v.forOwnRight=bt,v.functions=_t,v.groupBy=ur,v.indexBy=or,v.initial=function(n,t,e){var r=0,u=n?n.length:0;
|
41
|
+
if(typeof t!="number"&&null!=t){var o=u;for(t=v.createCallback(t,e,3);o--&&t(n[o],o,n);)r++}else r=null==t||e?1:t||r;return s(n,0,Pe(Be(0,u-r),u))},v.intersection=function(){for(var e=[],r=-1,u=arguments.length,a=i(),l=ht(),f=l===n,s=i();++r<u;){var g=arguments[r];(qe(g)||dt(g))&&(e.push(g),a.push(f&&g.length>=_&&o(r?e[r]:s)))}var f=e[0],h=-1,v=f?f.length:0,y=[];n:for(;++h<v;){var m=a[0],g=f[h];if(0>(m?t(m,g):l(s,g))){for(r=u,(m||s).push(g);--r;)if(m=a[r],0>(m?t(m,g):l(e[r],g)))continue n;y.push(g)
|
42
|
+
}}for(;u--;)(m=a[u])&&p(m);return c(a),c(s),y},v.invert=wt,v.invoke=function(n,t){var e=s(arguments,2),r=-1,u=typeof t=="function",o=n?n.length:0,a=Zt(typeof o=="number"?o:0);return Dt(n,function(n){a[++r]=(u?t:n[t]).apply(n,e)}),a},v.keys=We,v.map=Bt,v.mapValues=function(n,t,e){var r={};return t=v.createCallback(t,e,3),tr(n,function(n,e,u){r[e]=t(n,e,u)}),r},v.max=Pt,v.memoize=function(n,t){if(!jt(n))throw new le;var e=function(){var r=e.cache,u=t?t.apply(this,arguments):b+arguments[0];return we.call(r,u)?r[u]:r[u]=n.apply(this,arguments)
|
43
|
+
};return e.cache={},e},v.merge=function(n){var t=arguments,e=2;if(!xt(n))return n;if("number"!=typeof t[2]&&(e=t.length),3<e&&"function"==typeof t[e-2])var r=tt(t[--e-1],t[e--],2);else 2<e&&"function"==typeof t[e-1]&&(r=t[--e]);for(var t=s(arguments,1,e),u=-1,o=i(),a=i();++u<e;)it(n,t[u],r,o,a);return c(o),c(a),n},v.min=function(n,t,e){var u=1/0,o=u;if(typeof t!="function"&&e&&e[t]===n&&(t=null),null==t&&qe(n)){e=-1;for(var a=n.length;++e<a;){var i=n[e];i<o&&(o=i)}}else t=null==t&&kt(n)?r:v.createCallback(t,e,3),Xe(n,function(n,e,r){e=t(n,e,r),e<u&&(u=e,o=n)
|
44
|
+
});return o},v.omit=function(n,t,e){var r={};if(typeof t!="function"){var u=[];nr(n,function(n,t){u.push(t)});for(var u=rt(u,ot(arguments,true,false,1)),o=-1,a=u.length;++o<a;){var i=u[o];r[i]=n[i]}}else t=v.createCallback(t,e,3),nr(n,function(n,e,u){t(n,e,u)||(r[e]=n)});return r},v.once=function(n){var t,e;if(!jt(n))throw new le;return function(){return t?e:(t=true,e=n.apply(this,arguments),n=null,e)}},v.pairs=function(n){for(var t=-1,e=We(n),r=e.length,u=Zt(r);++t<r;){var o=e[t];u[t]=[o,n[o]]}return u
|
45
|
+
},v.partial=function(n){return pt(n,16,s(arguments,1))},v.partialRight=function(n){return pt(n,32,null,s(arguments,1))},v.pick=function(n,t,e){var r={};if(typeof t!="function")for(var u=-1,o=ot(arguments,true,false,1),a=xt(n)?o.length:0;++u<a;){var i=o[u];i in n&&(r[i]=n[i])}else t=v.createCallback(t,e,3),nr(n,function(n,e,u){t(n,e,u)&&(r[e]=n)});return r},v.pluck=ar,v.property=Xt,v.pull=function(n){for(var t=arguments,e=0,r=t.length,u=n?n.length:0;++e<r;)for(var o=-1,a=t[e];++o<u;)n[o]===a&&(ke.call(n,o--,1),u--);
|
46
|
+
return n},v.range=function(n,t,e){n=+n||0,e=typeof e=="number"?e:+e||1,null==t&&(t=n,n=0);var r=-1;t=Be(0,ye((t-n)/(e||1)));for(var u=Zt(t);++r<t;)u[r]=n,n+=e;return u},v.reject=function(n,t,e){return t=v.createCallback(t,e,3),At(n,function(n,e,r){return!t(n,e,r)})},v.remove=function(n,t,e){var r=-1,u=n?n.length:0,o=[];for(t=v.createCallback(t,e,3);++r<u;)e=n[r],t(e,r,n)&&(o.push(e),ke.call(n,r--,1),u--);return o},v.rest=qt,v.shuffle=Tt,v.sortBy=function(n,t,e){var r=-1,o=qe(t),a=n?n.length:0,f=Zt(typeof a=="number"?a:0);
|
47
|
+
for(o||(t=v.createCallback(t,e,3)),Dt(n,function(n,e,u){var a=f[++r]=l();o?a.m=Bt(t,function(t){return n[t]}):(a.m=i())[0]=t(n,e,u),a.n=r,a.o=n}),a=f.length,f.sort(u);a--;)n=f[a],f[a]=n.o,o||c(n.m),p(n);return f},v.tap=function(n,t){return t(n),n},v.throttle=function(n,t,e){var r=true,u=true;if(!jt(n))throw new le;return false===e?r=false:xt(e)&&(r="leading"in e?e.leading:r,u="trailing"in e?e.trailing:u),H.leading=r,H.maxWait=t,H.trailing=u,Vt(n,t,H)},v.times=function(n,t,e){n=-1<(n=+n)?n:0;var r=-1,u=Zt(n);
|
48
|
+
for(t=tt(t,e,1);++r<n;)u[r]=t(r);return u},v.toArray=function(n){return n&&typeof n.length=="number"?Le.unindexedChars&&kt(n)?n.split(""):s(n):Et(n)},v.transform=function(n,t,e,r){var u=qe(n);if(null==e)if(u)e=[];else{var o=n&&n.constructor;e=nt(o&&o.prototype)}return t&&(t=v.createCallback(t,r,4),(u?Xe:tr)(n,function(n,r,u){return t(e,n,r,u)})),e},v.union=function(){return ft(ot(arguments,true,true))},v.uniq=Wt,v.values=Et,v.where=At,v.without=function(n){return rt(n,s(arguments,1))},v.wrap=function(n,t){return pt(t,16,[n])
|
49
|
+
},v.xor=function(){for(var n=-1,t=arguments.length;++n<t;){var e=arguments[n];if(qe(e)||dt(e))var r=r?ft(rt(r,e).concat(rt(e,r))):e}return r||[]},v.zip=Gt,v.zipObject=Jt,v.collect=Bt,v.drop=qt,v.each=Dt,v.eachRight=Nt,v.extend=Ye,v.methods=_t,v.object=Jt,v.select=At,v.tail=qt,v.unique=Wt,v.unzip=Gt,Ut(v),v.clone=function(n,t,e,r){return typeof t!="boolean"&&null!=t&&(r=e,e=t,t=false),Y(n,t,typeof e=="function"&&tt(e,r,1))},v.cloneDeep=function(n,t,e){return Y(n,true,typeof t=="function"&&tt(t,e,1))},v.contains=Ot,v.escape=function(n){return null==n?"":ie(n).replace(Qe,gt)
|
50
|
+
},v.every=St,v.find=It,v.findIndex=function(n,t,e){var r=-1,u=n?n.length:0;for(t=v.createCallback(t,e,3);++r<u;)if(t(n[r],r,n))return r;return-1},v.findKey=function(n,t,e){var r;return t=v.createCallback(t,e,3),tr(n,function(n,e,u){return t(n,e,u)?(r=e,false):void 0}),r},v.findLast=function(n,t,e){var r;return t=v.createCallback(t,e,3),Nt(n,function(n,e,u){return t(n,e,u)?(r=n,false):void 0}),r},v.findLastIndex=function(n,t,e){var r=n?n.length:0;for(t=v.createCallback(t,e,3);r--;)if(t(n[r],r,n))return r;
|
51
|
+
return-1},v.findLastKey=function(n,t,e){var r;return t=v.createCallback(t,e,3),bt(n,function(n,e,u){return t(n,e,u)?(r=e,false):void 0}),r},v.has=function(n,t){return n?we.call(n,t):false},v.identity=Ht,v.indexOf=zt,v.isArguments=dt,v.isArray=qe,v.isBoolean=function(n){return true===n||false===n||n&&typeof n=="object"&&he.call(n)==L||false},v.isDate=function(n){return n&&typeof n=="object"&&he.call(n)==z||false},v.isElement=function(n){return n&&1===n.nodeType||false},v.isEmpty=function(n){var t=true;if(!n)return t;var e=he.call(n),r=n.length;
|
52
|
+
return e==$||e==M||(Le.argsClass?e==T:dt(n))||e==G&&typeof r=="number"&&jt(n.splice)?!r:(tr(n,function(){return t=false}),t)},v.isEqual=function(n,t,e,r){return at(n,t,typeof e=="function"&&tt(e,r,2))},v.isFinite=function(n){return Ie(n)&&!De(parseFloat(n))},v.isFunction=jt,v.isNaN=function(n){return Ct(n)&&n!=+n},v.isNull=function(n){return null===n},v.isNumber=Ct,v.isObject=xt,v.isPlainObject=er,v.isRegExp=function(n){return n&&X[typeof n]&&he.call(n)==J||false},v.isString=kt,v.isUndefined=function(n){return typeof n=="undefined"
|
53
|
+
},v.lastIndexOf=function(n,t,e){var r=n?n.length:0;for(typeof e=="number"&&(r=(0>e?Be(0,r+e):Pe(e,r-1))+1);r--;)if(n[r]===t)return r;return-1},v.mixin=Ut,v.noConflict=function(){return e._=ge,this},v.noop=Qt,v.now=ir,v.parseInt=lr,v.random=function(n,t,e){var r=null==n,u=null==t;return null==e&&(typeof n=="boolean"&&u?(e=n,n=1):u||typeof t!="boolean"||(e=t,u=true)),r&&u&&(t=1),n=+n||0,u?(t=n,n=0):t=+t||0,e||n%1||t%1?(e=Fe(),Pe(n+e*(t-n+parseFloat("1e-"+((e+"").length-1))),t)):lt(n,t)},v.reduce=Rt,v.reduceRight=Ft,v.result=function(n,t){if(n){var e=n[t];
|
54
|
+
return jt(e)?n[t]():e}},v.runInContext=g,v.size=function(n){var t=n?n.length:0;return typeof t=="number"?t:We(n).length},v.some=$t,v.sortedIndex=Kt,v.template=function(n,t,e){var r=v.templateSettings;n=ie(n||""),e=Ze({},e,r);var u,o=Ze({},e.imports,r.imports),r=We(o),o=Et(o),i=0,l=e.interpolate||N,f="__p+='",l=ae((e.escape||N).source+"|"+l.source+"|"+(l===I?O:N).source+"|"+(e.evaluate||N).source+"|$","g");n.replace(l,function(t,e,r,o,l,c){return r||(r=o),f+=n.slice(i,c).replace(P,a),e&&(f+="'+__e("+e+")+'"),l&&(u=true,f+="';"+l+";\n__p+='"),r&&(f+="'+((__t=("+r+"))==null?'':__t)+'"),i=c+t.length,t
|
55
|
+
}),f+="';",l=e=e.variable,l||(e="obj",f="with("+e+"){"+f+"}"),f=(u?f.replace(x,""):f).replace(C,"$1").replace(E,"$1;"),f="function("+e+"){"+(l?"":e+"||("+e+"={});")+"var __t,__p='',__e=_.escape"+(u?",__j=Array.prototype.join;function print(){__p+=__j.call(arguments,'')}":";")+f+"return __p}";try{var c=ee(r,"return "+f).apply(h,o)}catch(p){throw p.source=f,p}return t?c(t):(c.source=f,c)},v.unescape=function(n){return null==n?"":ie(n).replace(Ue,mt)},v.uniqueId=function(n){var t=++m;return ie(null==n?"":n)+t
|
56
|
+
},v.all=St,v.any=$t,v.detect=It,v.findWhere=It,v.foldl=Rt,v.foldr=Ft,v.include=Ot,v.inject=Rt,Ut(function(){var n={};return tr(v,function(t,e){v.prototype[e]||(n[e]=t)}),n}(),false),v.first=Lt,v.last=function(n,t,e){var r=0,u=n?n.length:0;if(typeof t!="number"&&null!=t){var o=u;for(t=v.createCallback(t,e,3);o--&&t(n[o],o,n);)r++}else if(r=t,null==r||e)return n?n[u-1]:h;return s(n,Be(0,u-r))},v.sample=function(n,t,e){return n&&typeof n.length!="number"?n=Et(n):Le.unindexedChars&&kt(n)&&(n=n.split("")),null==t||e?n?n[lt(0,n.length-1)]:h:(n=Tt(n),n.length=Pe(Be(0,t),n.length),n)
|
57
|
+
},v.take=Lt,v.head=Lt,tr(v,function(n,t){var e="sample"!==t;v.prototype[t]||(v.prototype[t]=function(t,r){var u=this.__chain__,o=n(this.__wrapped__,t,r);return u||null!=t&&(!r||e&&typeof t=="function")?new y(o,u):o})}),v.VERSION="2.4.1",v.prototype.chain=function(){return this.__chain__=true,this},v.prototype.toString=function(){return ie(this.__wrapped__)},v.prototype.value=Yt,v.prototype.valueOf=Yt,Xe(["join","pop","shift"],function(n){var t=fe[n];v.prototype[n]=function(){var n=this.__chain__,e=t.apply(this.__wrapped__,arguments);
|
58
|
+
return n?new y(e,n):e}}),Xe(["push","reverse","sort","unshift"],function(n){var t=fe[n];v.prototype[n]=function(){return t.apply(this.__wrapped__,arguments),this}}),Xe(["concat","slice","splice"],function(n){var t=fe[n];v.prototype[n]=function(){return new y(t.apply(this.__wrapped__,arguments),this.__chain__)}}),Le.spliceObjects||Xe(["pop","shift","splice"],function(n){var t=fe[n],e="splice"==n;v.prototype[n]=function(){var n=this.__chain__,r=this.__wrapped__,u=t.apply(r,arguments);return 0===r.length&&delete r[0],n||e?new y(u,n):u
|
58
59
|
}}),v}var h,v=[],y=[],m=0,d={},b=+new Date+"",_=75,w=40,j=" \t\x0B\f\xa0\ufeff\n\r\u2028\u2029\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000",x=/\b__p\+='';/g,C=/\b(__p\+=)''\+/g,E=/(__e\(.*?\)|\b__t\))\+'';/g,O=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,S=/\w*$/,A=/^\s*function[ \n\r\t]+\w/,I=/<%=([\s\S]+?)%>/g,D=RegExp("^["+j+"]*0+(?=.$)"),N=/($^)/,B=/\bthis\b/,P=/['\n\r\t\u2028\u2029\\]/g,R="Array Boolean Date Error Function Math Number Object RegExp String _ attachEvent clearTimeout isFinite isNaN parseInt setTimeout".split(" "),F="constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" "),T="[object Arguments]",$="[object Array]",L="[object Boolean]",z="[object Date]",q="[object Error]",K="[object Function]",W="[object Number]",G="[object Object]",J="[object RegExp]",M="[object String]",V={};
|
59
60
|
V[K]=false,V[T]=V[$]=V[L]=V[z]=V[W]=V[G]=V[J]=V[M]=true;var H={leading:false,maxWait:0,trailing:false},U={configurable:false,enumerable:false,value:null,writable:false},Q={a:"",b:null,c:"",d:"",e:"",v:null,g:"",h:null,support:null,i:"",j:false},X={"boolean":false,"function":true,object:true,number:false,string:false,undefined:false},Y={"\\":"\\","'":"'","\n":"n","\r":"r","\t":"t","\u2028":"u2028","\u2029":"u2029"},Z=X[typeof window]&&window||this,nt=X[typeof exports]&&exports&&!exports.nodeType&&exports,tt=X[typeof module]&&module&&!module.nodeType&&module,et=tt&&tt.exports===nt&&nt,rt=X[typeof global]&&global;
|
60
61
|
!rt||rt.global!==rt&&rt.window!==rt||(Z=rt);var ut=g();typeof define=="function"&&typeof define.amd=="object"&&define.amd?(Z._=ut, define(function(){return ut})):nt&&tt?et?(tt.exports=ut)._=ut:nt._=ut:Z._=ut}).call(this);
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/**
|
2
2
|
* @license
|
3
|
-
* Lo-Dash 2.4.
|
3
|
+
* Lo-Dash 2.4.1 (Custom Build) <http://lodash.com/>
|
4
4
|
* Build: `lodash modern -o ./dist/lodash.js`
|
5
5
|
* Copyright 2012-2013 The Dojo Foundation <http://dojofoundation.org/>
|
6
6
|
* Based on Underscore.js 1.5.2 <http://underscorejs.org/LICENSE>
|
@@ -477,29 +477,30 @@
|
|
477
477
|
clearTimeout = context.clearTimeout,
|
478
478
|
floor = Math.floor,
|
479
479
|
fnToString = Function.prototype.toString,
|
480
|
-
getPrototypeOf =
|
480
|
+
getPrototypeOf = isNative(getPrototypeOf = Object.getPrototypeOf) && getPrototypeOf,
|
481
481
|
hasOwnProperty = objectProto.hasOwnProperty,
|
482
482
|
push = arrayRef.push,
|
483
483
|
setTimeout = context.setTimeout,
|
484
|
-
splice = arrayRef.splice
|
484
|
+
splice = arrayRef.splice,
|
485
|
+
unshift = arrayRef.unshift;
|
485
486
|
|
486
487
|
/** Used to set meta data on functions */
|
487
488
|
var defineProperty = (function() {
|
488
489
|
// IE 8 only accepts DOM elements
|
489
490
|
try {
|
490
491
|
var o = {},
|
491
|
-
func =
|
492
|
+
func = isNative(func = Object.defineProperty) && func,
|
492
493
|
result = func(o, o, o) && func;
|
493
494
|
} catch(e) { }
|
494
495
|
return result;
|
495
496
|
}());
|
496
497
|
|
497
498
|
/* Native method shortcuts for methods with the same name as other `lodash` methods */
|
498
|
-
var nativeCreate =
|
499
|
-
nativeIsArray =
|
499
|
+
var nativeCreate = isNative(nativeCreate = Object.create) && nativeCreate,
|
500
|
+
nativeIsArray = isNative(nativeIsArray = Array.isArray) && nativeIsArray,
|
500
501
|
nativeIsFinite = context.isFinite,
|
501
502
|
nativeIsNaN = context.isNaN,
|
502
|
-
nativeKeys =
|
503
|
+
nativeKeys = isNative(nativeKeys = Object.keys) && nativeKeys,
|
503
504
|
nativeMax = Math.max,
|
504
505
|
nativeMin = Math.min,
|
505
506
|
nativeParseInt = context.parseInt,
|
@@ -621,7 +622,7 @@
|
|
621
622
|
* @memberOf _.support
|
622
623
|
* @type boolean
|
623
624
|
*/
|
624
|
-
support.funcDecomp = !
|
625
|
+
support.funcDecomp = !isNative(context.WinRTError) && reThis.test(runInContext);
|
625
626
|
|
626
627
|
/**
|
627
628
|
* Detect if `Function#name` is supported (all but IE).
|
@@ -711,7 +712,10 @@
|
|
711
712
|
// `Function#bind` spec
|
712
713
|
// http://es5.github.io/#x15.3.4.5
|
713
714
|
if (partialArgs) {
|
714
|
-
|
715
|
+
// avoid `arguments` object deoptimizations by using `slice` instead
|
716
|
+
// of `Array.prototype.slice.call` and not assigning `arguments` to a
|
717
|
+
// variable as a ternary expression
|
718
|
+
var args = slice(partialArgs);
|
715
719
|
push.apply(args, arguments);
|
716
720
|
}
|
717
721
|
// mimic the constructor's `return` behavior
|
@@ -928,7 +932,7 @@
|
|
928
932
|
function bound() {
|
929
933
|
var thisBinding = isBind ? thisArg : this;
|
930
934
|
if (partialArgs) {
|
931
|
-
var args =
|
935
|
+
var args = slice(partialArgs);
|
932
936
|
push.apply(args, arguments);
|
933
937
|
}
|
934
938
|
if (partialRightArgs || isCurry) {
|
@@ -1153,51 +1157,54 @@
|
|
1153
1157
|
|
1154
1158
|
// recursively compare objects and arrays (susceptible to call stack limits)
|
1155
1159
|
if (isArr) {
|
1160
|
+
// compare lengths to determine if a deep comparison is necessary
|
1156
1161
|
length = a.length;
|
1157
1162
|
size = b.length;
|
1158
|
-
|
1159
|
-
|
1160
|
-
result
|
1161
|
-
|
1162
|
-
|
1163
|
-
|
1164
|
-
|
1165
|
-
|
1166
|
-
|
1167
|
-
|
1168
|
-
|
1169
|
-
|
1170
|
-
|
1171
|
-
if ((result = baseIsEqual(a[index], value, callback, isWhere, stackA, stackB))) {
|
1172
|
-
break;
|
1163
|
+
result = size == length;
|
1164
|
+
|
1165
|
+
if (result || isWhere) {
|
1166
|
+
// deep compare the contents, ignoring non-numeric properties
|
1167
|
+
while (size--) {
|
1168
|
+
var index = length,
|
1169
|
+
value = b[size];
|
1170
|
+
|
1171
|
+
if (isWhere) {
|
1172
|
+
while (index--) {
|
1173
|
+
if ((result = baseIsEqual(a[index], value, callback, isWhere, stackA, stackB))) {
|
1174
|
+
break;
|
1175
|
+
}
|
1173
1176
|
}
|
1177
|
+
} else if (!(result = baseIsEqual(a[size], value, callback, isWhere, stackA, stackB))) {
|
1178
|
+
break;
|
1174
1179
|
}
|
1175
|
-
} else if (!(result = baseIsEqual(a[size], value, callback, isWhere, stackA, stackB))) {
|
1176
|
-
break;
|
1177
1180
|
}
|
1178
1181
|
}
|
1179
|
-
return result;
|
1180
1182
|
}
|
1181
|
-
|
1182
|
-
|
1183
|
-
|
1184
|
-
|
1185
|
-
|
1186
|
-
|
1187
|
-
|
1188
|
-
|
1189
|
-
|
1190
|
-
});
|
1191
|
-
|
1192
|
-
if (result && !isWhere) {
|
1193
|
-
// ensure both objects have the same number of properties
|
1194
|
-
forIn(a, function(value, key, a) {
|
1195
|
-
if (hasOwnProperty.call(a, key)) {
|
1196
|
-
// `size` will be `-1` if `a` has more properties than `b`
|
1197
|
-
return (result = --size > -1);
|
1183
|
+
else {
|
1184
|
+
// deep compare objects using `forIn`, instead of `forOwn`, to avoid `Object.keys`
|
1185
|
+
// which, in this case, is more costly
|
1186
|
+
forIn(b, function(value, key, b) {
|
1187
|
+
if (hasOwnProperty.call(b, key)) {
|
1188
|
+
// count the number of properties.
|
1189
|
+
size++;
|
1190
|
+
// deep compare each property value.
|
1191
|
+
return (result = hasOwnProperty.call(a, key) && baseIsEqual(a[key], value, callback, isWhere, stackA, stackB));
|
1198
1192
|
}
|
1199
1193
|
});
|
1194
|
+
|
1195
|
+
if (result && !isWhere) {
|
1196
|
+
// ensure both objects have the same number of properties
|
1197
|
+
forIn(a, function(value, key, a) {
|
1198
|
+
if (hasOwnProperty.call(a, key)) {
|
1199
|
+
// `size` will be `-1` if `a` has more properties than `b`
|
1200
|
+
return (result = --size > -1);
|
1201
|
+
}
|
1202
|
+
});
|
1203
|
+
}
|
1200
1204
|
}
|
1205
|
+
stackA.pop();
|
1206
|
+
stackB.pop();
|
1207
|
+
|
1201
1208
|
if (initedStack) {
|
1202
1209
|
releaseArray(stackA);
|
1203
1210
|
releaseArray(stackB);
|
@@ -1304,13 +1311,8 @@
|
|
1304
1311
|
|
1305
1312
|
if (isLarge) {
|
1306
1313
|
var cache = createCache(seen);
|
1307
|
-
|
1308
|
-
|
1309
|
-
seen = cache;
|
1310
|
-
} else {
|
1311
|
-
isLarge = false;
|
1312
|
-
seen = callback ? seen : (releaseArray(seen), result);
|
1313
|
-
}
|
1314
|
+
indexOf = cacheIndexOf;
|
1315
|
+
seen = cache;
|
1314
1316
|
}
|
1315
1317
|
while (++index < length) {
|
1316
1318
|
var value = array[index],
|
@@ -1410,8 +1412,14 @@
|
|
1410
1412
|
}
|
1411
1413
|
var bindData = func && func.__bindData__;
|
1412
1414
|
if (bindData && bindData !== true) {
|
1413
|
-
|
1414
|
-
|
1415
|
+
// clone `bindData`
|
1416
|
+
bindData = slice(bindData);
|
1417
|
+
if (bindData[2]) {
|
1418
|
+
bindData[2] = slice(bindData[2]);
|
1419
|
+
}
|
1420
|
+
if (bindData[3]) {
|
1421
|
+
bindData[3] = slice(bindData[3]);
|
1422
|
+
}
|
1415
1423
|
// set `thisBinding` is not previously bound
|
1416
1424
|
if (isBind && !(bindData[1] & 1)) {
|
1417
1425
|
bindData[4] = thisArg;
|
@@ -1430,7 +1438,7 @@
|
|
1430
1438
|
}
|
1431
1439
|
// append partial right arguments
|
1432
1440
|
if (isPartialRight) {
|
1433
|
-
|
1441
|
+
unshift.apply(bindData[3] || (bindData[3] = []), partialRightArgs);
|
1434
1442
|
}
|
1435
1443
|
// merge flags
|
1436
1444
|
bindData[1] |= bitmask;
|
@@ -1465,6 +1473,17 @@
|
|
1465
1473
|
return result;
|
1466
1474
|
}
|
1467
1475
|
|
1476
|
+
/**
|
1477
|
+
* Checks if `value` is a native function.
|
1478
|
+
*
|
1479
|
+
* @private
|
1480
|
+
* @param {*} value The value to check.
|
1481
|
+
* @returns {boolean} Returns `true` if the `value` is a native function, else `false`.
|
1482
|
+
*/
|
1483
|
+
function isNative(value) {
|
1484
|
+
return typeof value == 'function' && reNative.test(value);
|
1485
|
+
}
|
1486
|
+
|
1468
1487
|
/**
|
1469
1488
|
* Sets `this` binding data on a given function.
|
1470
1489
|
*
|
@@ -2495,12 +2514,12 @@
|
|
2495
2514
|
* _.isPlainObject({ 'x': 0, 'y': 0 });
|
2496
2515
|
* // => true
|
2497
2516
|
*/
|
2498
|
-
var isPlainObject = function(value) {
|
2517
|
+
var isPlainObject = !getPrototypeOf ? shimIsPlainObject : function(value) {
|
2499
2518
|
if (!(value && toString.call(value) == objectClass)) {
|
2500
2519
|
return false;
|
2501
2520
|
}
|
2502
2521
|
var valueOf = value.valueOf,
|
2503
|
-
objProto =
|
2522
|
+
objProto = isNative(valueOf) && (objProto = getPrototypeOf(valueOf)) && getPrototypeOf(objProto);
|
2504
2523
|
|
2505
2524
|
return objProto
|
2506
2525
|
? (value == objProto || getPrototypeOf(value) == objProto)
|
@@ -4993,7 +5012,7 @@
|
|
4993
5012
|
}
|
4994
5013
|
|
4995
5014
|
/**
|
4996
|
-
* Creates an array that is the
|
5015
|
+
* Creates an array that is the symmetric difference of the provided arrays.
|
4997
5016
|
* See http://en.wikipedia.org/wiki/Symmetric_difference.
|
4998
5017
|
*
|
4999
5018
|
* @static
|
@@ -5962,7 +5981,7 @@
|
|
5962
5981
|
* _.defer(function() { console.log(_.now() - stamp); });
|
5963
5982
|
* // => logs the number of milliseconds it took for the deferred function to be called
|
5964
5983
|
*/
|
5965
|
-
var now =
|
5984
|
+
var now = isNative(now = Date.now) && now || function() {
|
5966
5985
|
return new Date().getTime();
|
5967
5986
|
};
|
5968
5987
|
|
@@ -6689,7 +6708,7 @@
|
|
6689
6708
|
* @memberOf _
|
6690
6709
|
* @type string
|
6691
6710
|
*/
|
6692
|
-
lodash.VERSION = '2.4.
|
6711
|
+
lodash.VERSION = '2.4.1';
|
6693
6712
|
|
6694
6713
|
// add "Chaining" functions to the wrapper
|
6695
6714
|
lodash.prototype.chain = wrapperChain;
|