lodash-rails 1.2.0 → 1.2.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 +75 -48
- data/vendor/assets/javascripts/lodash.compat.min.js +42 -41
- data/vendor/assets/javascripts/lodash.js +73 -47
- data/vendor/assets/javascripts/lodash.min.js +39 -39
- data/vendor/assets/javascripts/lodash.underscore.js +48 -41
- data/vendor/assets/javascripts/lodash.underscore.min.js +30 -29
- 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: e9089f7760c413d0fbdcce61c9c402fc9fecb166
|
4
|
+
data.tar.gz: 9a4cb9209a13b45d3448839f166382aba4515064
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a48be1a691143fcee7c3eb280adedf4225d5fee96969ee6377798fde1407ea9bb2e676bd29464f732784b8e1934e7624a817fef33ee66dc51b7c07293d9b426
|
7
|
+
data.tar.gz: 44a4d5b5b92f68715d9d488ae77bcb39591005572facf4e93564d3086e0095bb9a4bc41eb36472a73e76334b5c842a5256631db10cc039647eab856507343497
|
data/README.md
CHANGED
data/lib/lodash/rails/version.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/**
|
2
2
|
* @license
|
3
|
-
* Lo-Dash 1.2.
|
3
|
+
* Lo-Dash 1.2.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.4.4 <http://underscorejs.org/>
|
@@ -56,8 +56,20 @@
|
|
56
56
|
/** Used to match "interpolate" template delimiters */
|
57
57
|
var reInterpolate = /<%=([\s\S]+?)%>/g;
|
58
58
|
|
59
|
-
/** Used to
|
60
|
-
var
|
59
|
+
/** Used to detect and test whitespace */
|
60
|
+
var whitespace = (
|
61
|
+
// whitespace
|
62
|
+
' \t\x0B\f\xA0\ufeff' +
|
63
|
+
|
64
|
+
// line terminators
|
65
|
+
'\n\r\u2028\u2029' +
|
66
|
+
|
67
|
+
// unicode category "Zs" space separators
|
68
|
+
'\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000'
|
69
|
+
);
|
70
|
+
|
71
|
+
/** Used to match leading whitespace and zeros to be removed */
|
72
|
+
var reLeadingSpacesAndZeros = RegExp('^[' + whitespace + ']*0+(?=.$)');
|
61
73
|
|
62
74
|
/** Used to ensure capturing order of template delimiters */
|
63
75
|
var reNoMatch = /($^)/;
|
@@ -934,6 +946,26 @@
|
|
934
946
|
};
|
935
947
|
}
|
936
948
|
|
949
|
+
/**
|
950
|
+
* Checks if `value` is an array.
|
951
|
+
*
|
952
|
+
* @static
|
953
|
+
* @memberOf _
|
954
|
+
* @category Objects
|
955
|
+
* @param {Mixed} value The value to check.
|
956
|
+
* @returns {Boolean} Returns `true`, if the `value` is an array, else `false`.
|
957
|
+
* @example
|
958
|
+
*
|
959
|
+
* (function() { return _.isArray(arguments); })();
|
960
|
+
* // => false
|
961
|
+
*
|
962
|
+
* _.isArray([1, 2, 3]);
|
963
|
+
* // => true
|
964
|
+
*/
|
965
|
+
var isArray = nativeIsArray || function(value) {
|
966
|
+
return value ? (typeof value == 'object' && toString.call(value) == arrayClass) : false;
|
967
|
+
};
|
968
|
+
|
937
969
|
/**
|
938
970
|
* A fallback implementation of `Object.keys` which produces an array of the
|
939
971
|
* given object's own enumerable property names.
|
@@ -1406,29 +1438,6 @@
|
|
1406
1438
|
return result;
|
1407
1439
|
}
|
1408
1440
|
|
1409
|
-
/**
|
1410
|
-
* Checks if `value` is an array.
|
1411
|
-
*
|
1412
|
-
* @static
|
1413
|
-
* @memberOf _
|
1414
|
-
* @category Objects
|
1415
|
-
* @param {Mixed} value The value to check.
|
1416
|
-
* @returns {Boolean} Returns `true`, if the `value` is an array, else `false`.
|
1417
|
-
* @example
|
1418
|
-
*
|
1419
|
-
* (function() { return _.isArray(arguments); })();
|
1420
|
-
* // => false
|
1421
|
-
*
|
1422
|
-
* _.isArray([1, 2, 3]);
|
1423
|
-
* // => true
|
1424
|
-
*/
|
1425
|
-
function isArray(value) {
|
1426
|
-
// `instanceof` may cause a memory leak in IE 7 if `value` is a host object
|
1427
|
-
// http://ajaxian.com/archives/working-aroung-the-instanceof-memory-leak
|
1428
|
-
return (support.argsObject && value instanceof Array) ||
|
1429
|
-
(nativeIsArray ? nativeIsArray(value) : toString.call(value) == arrayClass);
|
1430
|
-
}
|
1431
|
-
|
1432
1441
|
/**
|
1433
1442
|
* Checks if `value` is a boolean value.
|
1434
1443
|
*
|
@@ -1460,7 +1469,7 @@
|
|
1460
1469
|
* // => true
|
1461
1470
|
*/
|
1462
1471
|
function isDate(value) {
|
1463
|
-
return value
|
1472
|
+
return value ? (typeof value == 'object' && toString.call(value) == dateClass) : false;
|
1464
1473
|
}
|
1465
1474
|
|
1466
1475
|
/**
|
@@ -1764,7 +1773,7 @@
|
|
1764
1773
|
// fallback for older versions of Chrome and Safari
|
1765
1774
|
if (isFunction(/x/)) {
|
1766
1775
|
isFunction = function(value) {
|
1767
|
-
return value
|
1776
|
+
return typeof value == 'function' && toString.call(value) == funcClass;
|
1768
1777
|
};
|
1769
1778
|
}
|
1770
1779
|
|
@@ -1914,7 +1923,7 @@
|
|
1914
1923
|
* // => true
|
1915
1924
|
*/
|
1916
1925
|
function isRegExp(value) {
|
1917
|
-
return value
|
1926
|
+
return value ? (objectTypes[typeof value] && toString.call(value) == regexpClass) : false;
|
1918
1927
|
}
|
1919
1928
|
|
1920
1929
|
/**
|
@@ -3430,7 +3439,7 @@
|
|
3430
3439
|
/**
|
3431
3440
|
* Flattens a nested array (the nesting can be to any depth). If `isShallow`
|
3432
3441
|
* is truthy, `array` will only be flattened a single level. If `callback`
|
3433
|
-
* is passed, each element of `array` is passed through a callback` before
|
3442
|
+
* is passed, each element of `array` is passed through a `callback` before
|
3434
3443
|
* flattening. The `callback` is bound to `thisArg` and invoked with three
|
3435
3444
|
* arguments; (value, index, array).
|
3436
3445
|
*
|
@@ -3989,7 +3998,7 @@
|
|
3989
3998
|
* Creates a duplicate-value-free version of the `array` using strict equality
|
3990
3999
|
* for comparisons, i.e. `===`. If the `array` is already sorted, passing `true`
|
3991
4000
|
* for `isSorted` will run a faster algorithm. If `callback` is passed, each
|
3992
|
-
* element of `array` is passed through a callback` before uniqueness is computed.
|
4001
|
+
* element of `array` is passed through a `callback` before uniqueness is computed.
|
3993
4002
|
* The `callback` is bound to `thisArg` and invoked with three arguments; (value, index, array).
|
3994
4003
|
*
|
3995
4004
|
* If a property name is passed for `callback`, the created "_.pluck" style
|
@@ -4452,6 +4461,10 @@
|
|
4452
4461
|
* and/or trailing edge of the `wait` timeout. Subsequent calls to the debounced
|
4453
4462
|
* function will return the result of the last `func` call.
|
4454
4463
|
*
|
4464
|
+
* Note: If `leading` and `trailing` options are `true`, `func` will be called
|
4465
|
+
* on the trailing edge of the timeout only if the the debounced function is
|
4466
|
+
* invoked more than once during the `wait` timeout.
|
4467
|
+
*
|
4455
4468
|
* @static
|
4456
4469
|
* @memberOf _
|
4457
4470
|
* @category Functions
|
@@ -4465,16 +4478,22 @@
|
|
4465
4478
|
*
|
4466
4479
|
* var lazyLayout = _.debounce(calculateLayout, 300);
|
4467
4480
|
* jQuery(window).on('resize', lazyLayout);
|
4481
|
+
*
|
4482
|
+
* jQuery('#postbox').on('click', _.debounce(sendMail, 200, {
|
4483
|
+
* 'leading': true,
|
4484
|
+
* 'trailing': false
|
4485
|
+
* });
|
4468
4486
|
*/
|
4469
4487
|
function debounce(func, wait, options) {
|
4470
4488
|
var args,
|
4489
|
+
inited,
|
4471
4490
|
result,
|
4472
4491
|
thisArg,
|
4473
4492
|
timeoutId,
|
4474
4493
|
trailing = true;
|
4475
4494
|
|
4476
4495
|
function delayed() {
|
4477
|
-
timeoutId = null;
|
4496
|
+
inited = timeoutId = null;
|
4478
4497
|
if (trailing) {
|
4479
4498
|
result = func.apply(thisArg, args);
|
4480
4499
|
}
|
@@ -4487,15 +4506,15 @@
|
|
4487
4506
|
trailing = 'trailing' in options ? options.trailing : trailing;
|
4488
4507
|
}
|
4489
4508
|
return function() {
|
4490
|
-
var isLeading = leading && !timeoutId;
|
4491
4509
|
args = arguments;
|
4492
4510
|
thisArg = this;
|
4493
|
-
|
4494
4511
|
clearTimeout(timeoutId);
|
4495
|
-
timeoutId = setTimeout(delayed, wait);
|
4496
4512
|
|
4497
|
-
if (
|
4513
|
+
if (!inited && leading) {
|
4514
|
+
inited = true;
|
4498
4515
|
result = func.apply(thisArg, args);
|
4516
|
+
} else {
|
4517
|
+
timeoutId = setTimeout(delayed, wait);
|
4499
4518
|
}
|
4500
4519
|
return result;
|
4501
4520
|
};
|
@@ -4665,12 +4684,14 @@
|
|
4665
4684
|
|
4666
4685
|
/**
|
4667
4686
|
* Creates a function that, when executed, will only call the `func` function
|
4668
|
-
* at most once per every `wait` milliseconds.
|
4669
|
-
*
|
4670
|
-
*
|
4671
|
-
*
|
4672
|
-
*
|
4673
|
-
*
|
4687
|
+
* at most once per every `wait` milliseconds. Pass an `options` object to
|
4688
|
+
* indicate that `func` should be invoked on the leading and/or trailing edge
|
4689
|
+
* of the `wait` timeout. Subsequent calls to the throttled function will
|
4690
|
+
* return the result of the last `func` call.
|
4691
|
+
*
|
4692
|
+
* Note: If `leading` and `trailing` options are `true`, `func` will be called
|
4693
|
+
* on the trailing edge of the timeout only if the the throttled function is
|
4694
|
+
* invoked more than once during the `wait` timeout.
|
4674
4695
|
*
|
4675
4696
|
* @static
|
4676
4697
|
* @memberOf _
|
@@ -4685,6 +4706,10 @@
|
|
4685
4706
|
*
|
4686
4707
|
* var throttled = _.throttle(updatePosition, 100);
|
4687
4708
|
* jQuery(window).on('scroll', throttled);
|
4709
|
+
*
|
4710
|
+
* jQuery('.interactive').on('click', _.throttle(renewToken, 300000, {
|
4711
|
+
* 'trailing': false
|
4712
|
+
* }));
|
4688
4713
|
*/
|
4689
4714
|
function throttle(func, wait, options) {
|
4690
4715
|
var args,
|
@@ -4696,10 +4721,9 @@
|
|
4696
4721
|
trailing = true;
|
4697
4722
|
|
4698
4723
|
function trailingCall() {
|
4699
|
-
lastCalled = new Date;
|
4700
4724
|
timeoutId = null;
|
4701
|
-
|
4702
4725
|
if (trailing) {
|
4726
|
+
lastCalled = new Date;
|
4703
4727
|
result = func.apply(thisArg, args);
|
4704
4728
|
}
|
4705
4729
|
}
|
@@ -4856,6 +4880,8 @@
|
|
4856
4880
|
|
4857
4881
|
/**
|
4858
4882
|
* Converts the given `value` into an integer of the specified `radix`.
|
4883
|
+
* If `radix` is `undefined` or `0`, a `radix` of `10` is used unless the
|
4884
|
+
* `value` is a hexadecimal, in which case a `radix` of `16` is used.
|
4859
4885
|
*
|
4860
4886
|
* Note: This method avoids differences in native ES3 and ES5 `parseInt`
|
4861
4887
|
* implementations. See http://es5.github.com/#E.
|
@@ -4863,16 +4889,17 @@
|
|
4863
4889
|
* @static
|
4864
4890
|
* @memberOf _
|
4865
4891
|
* @category Utilities
|
4866
|
-
* @param {
|
4892
|
+
* @param {String} value The value to parse.
|
4893
|
+
* @param {Number} [radix] The radix used to interpret the value to parse.
|
4867
4894
|
* @returns {Number} Returns the new integer value.
|
4868
4895
|
* @example
|
4869
4896
|
*
|
4870
4897
|
* _.parseInt('08');
|
4871
4898
|
* // => 8
|
4872
4899
|
*/
|
4873
|
-
var parseInt = nativeParseInt('08') == 8 ? nativeParseInt : function(value, radix) {
|
4900
|
+
var parseInt = nativeParseInt(whitespace + '08') == 8 ? nativeParseInt : function(value, radix) {
|
4874
4901
|
// Firefox and Opera still follow the ES3 specified implementation of `parseInt`
|
4875
|
-
return nativeParseInt(isString(value) ? value.replace(
|
4902
|
+
return nativeParseInt(isString(value) ? value.replace(reLeadingSpacesAndZeros, '') : value, radix || 0);
|
4876
4903
|
};
|
4877
4904
|
|
4878
4905
|
/**
|
@@ -5425,7 +5452,7 @@
|
|
5425
5452
|
* @memberOf _
|
5426
5453
|
* @type String
|
5427
5454
|
*/
|
5428
|
-
lodash.VERSION = '1.2.
|
5455
|
+
lodash.VERSION = '1.2.1';
|
5429
5456
|
|
5430
5457
|
// add "Chaining" functions to the wrapper
|
5431
5458
|
lodash.prototype.toString = wrapperToString;
|
@@ -1,46 +1,47 @@
|
|
1
1
|
/**
|
2
2
|
* @license
|
3
|
-
* Lo-Dash 1.2.
|
3
|
+
* Lo-Dash 1.2.1 (Custom Build) lodash.com/license
|
4
4
|
* Build: `lodash -o ./dist/lodash.compat.js`
|
5
5
|
* Underscore.js 1.4.4 underscorejs.org/LICENSE
|
6
6
|
*/
|
7
|
-
;(function(n){function t(r){function a(n){return n&&typeof n=="object"&&!
|
8
|
-
return a||(n=t[i]),e.length&&(r=r.length?(r=le.call(r),f?r.concat(e):e.concat(r)):e),this instanceof u?(
|
9
|
-
else if(r+="for(i in m){",(ve.enumPrototypes||t.i)&&(r+="if(",ve.enumPrototypes&&(r+="!(v&&i=='prototype')"),ve.enumPrototypes&&t.i&&(r+="&&"),t.i&&(r+="h.call(m,i)"),r+="){"),r+=t.f+";",(ve.enumPrototypes||t.i)&&(r+="}"),r+="}",ve.nonEnumShadows){r+="var f=m.constructor;";for(var u=0;7>u;u++)r+="i='"+t.g[u]+"';if(","constructor"==t.g[u]&&(r+="!(f&&f.prototype===m)&&"),r+="h.call(m,i)){"+t.f+"}"}return(t.b||ve.nonEnumArgs)&&(r+="}"),r+=t.c+";return u",e("h,j,k,l,o,p,r","return function("+n+"){"+r+"}")(Qt,
|
10
|
-
}function
|
11
|
-
var r=-1;e=e-t||0;for(var u=It(0>e?0:e);++r<e;)u[r]=n[t+r];return u}function
|
12
|
-
case
|
13
|
-
|
14
|
-
if(p!=
|
15
|
-
}),l&&!f&&
|
16
|
-
for(;++u<o;)(
|
17
|
-
}),a}function ft(n,t,e){var r=!0;if(t=a.createCallback(t,e),
|
18
|
-
if(t(o,e,n))return o}}function pt(n,t,e){if(t&&typeof e=="undefined"&&
|
19
|
-
});return u}function gt(n,t,e,r){var u=3>arguments.length;if(t=a.createCallback(t,r,4),
|
20
|
-
for(var u=n.length;++e<u&&!(r=t(n[e],e,n)););}else
|
21
|
-
return i}function _t(n,t,e){var r=-1,u=n?n.length:0;if(typeof e=="number")r=(0>e?ae(0,u+e):e||0)-1;else if(e)return r=Ct(n,t),n[r]===t?r:-1;for(;++r<u;)if(n[r]===t)return r;return-1}function wt(n,t,e){if(typeof t!="number"&&null!=t){var r=0,u=-1,o=n?n.length:0;for(t=a.createCallback(t,e);++u<o&&t(n[u],u,n);)r++}else r=null==t||e?1:ae(0,t);return
|
22
|
-
typeof t!="boolean"&&null!=t&&(r=e,e=t,t=!1);var p=!t&&o>=l;if(p)var s={};for(null!=e&&(c=[],e=a.createCallback(e,r));++u<o;){r=n[u];var v=e?e(r,u,n):r;if(p)var g=f+v,g=s[g]?!(c=s[g]):c=s[g]=[];(t?!u||c[c.length-1]!==v:g||0>_t(c,v))&&((e||p)&&c.push(v),i.push(r))}return i}function kt(n,t){for(var e=-1,r=n?n.length:0,u={};++e<r;){var a=n[e];
|
23
|
-
return Yt(function(){n.apply(e,t)},1)}function Et(n){return n}function St(n){pt(
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
}
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
return u},a.
|
36
|
-
|
37
|
-
},a
|
38
|
-
},a.
|
39
|
-
},a.
|
40
|
-
},a.
|
41
|
-
|
42
|
-
}
|
43
|
-
},
|
44
|
-
|
45
|
-
}}),
|
46
|
-
|
7
|
+
;(function(n){function t(r){function a(n){return n&&typeof n=="object"&&!me(n)&&Qt.call(n,"__wrapped__")?n:new V(n)}function R(n){var t=n.length,e=t>=l;if(e)for(var r={},u=-1;++u<t;){var a=f+n[u];(r[a]||(r[a]=[])).push(n[u])}return function(t){if(e){var u=f+t;return r[u]&&-1<_t(r[u],t)}return-1<_t(n,t)}}function T(n){return n.charCodeAt(0)}function D(n,t){var e=n.b,r=t.b;if(n=n.a,t=t.a,n!==t){if(n>t||typeof n=="undefined")return 1;if(n<t||typeof t=="undefined")return-1}return e<r?-1:1}function z(n,t,e,r){function u(){var r=arguments,l=o?this:t;
|
8
|
+
return a||(n=t[i]),e.length&&(r=r.length?(r=le.call(r),f?r.concat(e):e.concat(r)):e),this instanceof u?(G.prototype=n.prototype,l=new G,G.prototype=null,r=n.apply(l,r),et(r)?r:l):n.apply(l,r)}var a=tt(n),o=!e,i=t;if(o){var f=r;e=t}else if(!a){if(!r)throw new Dt;t=n}return u}function L(){for(var n,t={g:j,b:"k(m)",c:"",e:"m",f:"",h:"",i:!0,j:!!be},e=0;n=arguments[e];e++)for(var r in n)t[r]=n[r];if(n=t.a,t.d=/^[^,]+/.exec(n)[0],e=$t,r="var i,m="+t.d+",u="+t.e+";if(!m)return u;"+t.h+";",t.b?(r+="var n=m.length;i=-1;if("+t.b+"){",ve.unindexedChars&&(r+="if(l(m)){m=m.split('')}"),r+="while(++i<n){"+t.f+"}}else{"):ve.nonEnumArgs&&(r+="var n=m.length;i=-1;if(n&&j(m)){while(++i<n){i+='';"+t.f+"}}else{"),ve.enumPrototypes&&(r+="var v=typeof m=='function';"),t.i&&t.j)r+="var s=-1,t=r[typeof m]?o(m):[],n=t.length;while(++s<n){i=t[s];",ve.enumPrototypes&&(r+="if(!(v&&i=='prototype')){"),r+=t.f,ve.enumPrototypes&&(r+="}"),r+="}";
|
9
|
+
else if(r+="for(i in m){",(ve.enumPrototypes||t.i)&&(r+="if(",ve.enumPrototypes&&(r+="!(v&&i=='prototype')"),ve.enumPrototypes&&t.i&&(r+="&&"),t.i&&(r+="h.call(m,i)"),r+="){"),r+=t.f+";",(ve.enumPrototypes||t.i)&&(r+="}"),r+="}",ve.nonEnumShadows){r+="var f=m.constructor;";for(var u=0;7>u;u++)r+="i='"+t.g[u]+"';if(","constructor"==t.g[u]&&(r+="!(f&&f.prototype===m)&&"),r+="h.call(m,i)){"+t.f+"}"}return(t.b||ve.nonEnumArgs)&&(r+="}"),r+=t.c+";return u",e("h,j,k,l,o,p,r","return function("+n+"){"+r+"}")(Qt,W,me,ut,be,a,q)
|
10
|
+
}function K(n){return"\\"+B[n]}function M(n){return we[n]}function U(n){return typeof n.toString!="function"&&typeof(n+"")=="string"}function V(n){this.__wrapped__=n}function G(){}function H(n){var t=!1;if(!n||Zt.call(n)!=I||!ve.argsClass&&W(n))return t;var e=n.constructor;return(tt(e)?e instanceof e:ve.nodeClass||!U(n))?ve.ownLast?(xe(n,function(n,e,r){return t=Qt.call(r,e),!1}),!0===t):(xe(n,function(n,e){t=e}),!1===t||Qt.call(n,t)):t}function J(n,t,e){t||(t=0),typeof e=="undefined"&&(e=n?n.length:0);
|
11
|
+
var r=-1;e=e-t||0;for(var u=It(0>e?0:e);++r<e;)u[r]=n[t+r];return u}function Q(n){return Ce[n]}function W(n){return Zt.call(n)==k}function X(n,t,r,u,o,i){var f=n;if(typeof t=="function"&&(u=r,r=t,t=!1),typeof r=="function"){if(r=typeof u=="undefined"?r:a.createCallback(r,u,1),f=r(f),typeof f!="undefined")return f;f=n}if(u=et(f)){var l=Zt.call(f);if(!$[l]||!ve.nodeClass&&U(f))return f;var c=me(f)}if(!u||!t)return u?c?J(f):je({},f):f;switch(u=se[l],l){case O:case E:return new u(+f);case A:case N:return new u(f);
|
12
|
+
case P:return u(f.source,y.exec(f))}for(o||(o=[]),i||(i=[]),l=o.length;l--;)if(o[l]==n)return i[l];return f=c?u(f.length):{},c&&(Qt.call(n,"index")&&(f.index=n.index),Qt.call(n,"input")&&(f.input=n.input)),o.push(n),i.push(f),(c?pt:Oe)(n,function(n,u){f[u]=X(n,t,r,e,o,i)}),f}function Y(n){var t=[];return xe(n,function(n,e){tt(n)&&t.push(e)}),t.sort()}function Z(n){for(var t=-1,e=be(n),r=e.length,u={};++t<r;){var a=e[t];u[n[a]]=a}return u}function nt(n,t,e,r,u,o){var f=e===i;if(typeof e=="function"&&!f){e=a.createCallback(e,r,2);
|
13
|
+
var l=e(n,t);if(typeof l!="undefined")return!!l}if(n===t)return 0!==n||1/n==1/t;var c=typeof n,p=typeof t;if(n===n&&(!n||"function"!=c&&"object"!=c)&&(!t||"function"!=p&&"object"!=p))return!1;if(null==n||null==t)return n===t;if(p=Zt.call(n),c=Zt.call(t),p==k&&(p=I),c==k&&(c=I),p!=c)return!1;switch(p){case O:case E:return+n==+t;case A:return n!=+n?t!=+t:0==n?1/n==1/t:n==+t;case P:case N:return n==Tt(t)}if(c=p==x,!c){if(Qt.call(n,"__wrapped__")||Qt.call(t,"__wrapped__"))return nt(n.__wrapped__||n,t.__wrapped__||t,e,r,u,o);
|
14
|
+
if(p!=I||!ve.nodeClass&&(U(n)||U(t)))return!1;var p=!ve.argsObject&&W(n)?Ft:n.constructor,s=!ve.argsObject&&W(t)?Ft:t.constructor;if(p!=s&&(!tt(p)||!(p instanceof p&&tt(s)&&s instanceof s)))return!1}for(u||(u=[]),o||(o=[]),p=u.length;p--;)if(u[p]==n)return o[p]==t;var v=0,l=!0;if(u.push(n),o.push(t),c){if(p=n.length,v=t.length,l=v==n.length,!l&&!f)return l;for(;v--;)if(c=p,s=t[v],f)for(;c--&&!(l=nt(n[c],s,e,r,u,o)););else if(!(l=nt(n[v],s,e,r,u,o)))break;return l}return xe(t,function(t,a,i){return Qt.call(i,a)?(v++,l=Qt.call(n,a)&&nt(n[a],t,e,r,u,o)):void 0
|
15
|
+
}),l&&!f&&xe(n,function(n,t,e){return Qt.call(e,t)?l=-1<--v:void 0}),l}function tt(n){return typeof n=="function"}function et(n){return n?q[typeof n]:!1}function rt(n){return typeof n=="number"||Zt.call(n)==A}function ut(n){return typeof n=="string"||Zt.call(n)==N}function at(n,t,e){var r=arguments,u=0,o=2;if(!et(n))return n;if(e===i)var f=r[3],l=r[4],c=r[5];else l=[],c=[],typeof e!="number"&&(o=r.length),3<o&&"function"==typeof r[o-2]?f=a.createCallback(r[--o-1],r[o--],2):2<o&&"function"==typeof r[o-1]&&(f=r[--o]);
|
16
|
+
for(;++u<o;)(me(r[u])?pt:Oe)(r[u],function(t,e){var r,u,a=t,o=n[e];if(t&&((u=me(t))||Ee(t))){for(a=l.length;a--;)if(r=l[a]==t){o=c[a];break}if(!r){var p;f&&(a=f(o,t),p=typeof a!="undefined")&&(o=a),p||(o=u?me(o)?o:[]:Ee(o)?o:{}),l.push(t),c.push(o),p||(o=at(o,t,i,f,l,c))}}else f&&(a=f(o,t),typeof a=="undefined"&&(a=t)),typeof a!="undefined"&&(o=a);n[e]=o});return n}function ot(n){for(var t=-1,e=be(n),r=e.length,u=It(r);++t<r;)u[t]=n[e[t]];return u}function it(n,t,e){var r=-1,u=n?n.length:0,a=!1;return e=(0>e?ae(0,u+e):e)||0,typeof u=="number"?a=-1<(ut(n)?n.indexOf(t,e):_t(n,t,e)):_e(n,function(n){return++r<e?void 0:!(a=n===t)
|
17
|
+
}),a}function ft(n,t,e){var r=!0;if(t=a.createCallback(t,e),me(n)){e=-1;for(var u=n.length;++e<u&&(r=!!t(n[e],e,n)););}else _e(n,function(n,e,u){return r=!!t(n,e,u)});return r}function lt(n,t,e){var r=[];if(t=a.createCallback(t,e),me(n)){e=-1;for(var u=n.length;++e<u;){var o=n[e];t(o,e,n)&&r.push(o)}}else _e(n,function(n,e,u){t(n,e,u)&&r.push(n)});return r}function ct(n,t,e){if(t=a.createCallback(t,e),!me(n)){var r;return _e(n,function(n,e,u){return t(n,e,u)?(r=n,!1):void 0}),r}e=-1;for(var u=n.length;++e<u;){var o=n[e];
|
18
|
+
if(t(o,e,n))return o}}function pt(n,t,e){if(t&&typeof e=="undefined"&&me(n)){e=-1;for(var r=n.length;++e<r&&!1!==t(n[e],e,n););}else _e(n,t,e);return n}function st(n,t,e){var r=-1,u=n?n.length:0,o=It(typeof u=="number"?u:0);if(t=a.createCallback(t,e),me(n))for(;++r<u;)o[r]=t(n[r],r,n);else _e(n,function(n,e,u){o[++r]=t(n,e,u)});return o}function vt(n,t,e){var r=-1/0,u=r;if(!t&&me(n)){e=-1;for(var o=n.length;++e<o;){var i=n[e];i>u&&(u=i)}}else t=!t&&ut(n)?T:a.createCallback(t,e),_e(n,function(n,e,a){e=t(n,e,a),e>r&&(r=e,u=n)
|
19
|
+
});return u}function gt(n,t,e,r){var u=3>arguments.length;if(t=a.createCallback(t,r,4),me(n)){var o=-1,i=n.length;for(u&&(e=n[++o]);++o<i;)e=t(e,n[o],o,n)}else _e(n,function(n,r,a){e=u?(u=!1,n):t(e,n,r,a)});return e}function yt(n,t,e,r){var u=n,o=n?n.length:0,i=3>arguments.length;if(typeof o!="number")var f=be(n),o=f.length;else ve.unindexedChars&&ut(n)&&(u=n.split(""));return t=a.createCallback(t,r,4),pt(n,function(n,r,a){r=f?f[--o]:--o,e=i?(i=!1,u[r]):t(e,u[r],r,a)}),e}function ht(n,t,e){var r;
|
20
|
+
if(t=a.createCallback(t,e),me(n)){e=-1;for(var u=n.length;++e<u&&!(r=t(n[e],e,n)););}else _e(n,function(n,e,u){return!(r=t(n,e,u))});return!!r}function mt(n){for(var t=-1,e=n?n.length:0,r=Gt.apply(zt,le.call(arguments,1)),r=R(r),u=[];++t<e;){var a=n[t];r(a)||u.push(a)}return u}function dt(n,t,e){if(n){var r=0,u=n.length;if(typeof t!="number"&&null!=t){var o=-1;for(t=a.createCallback(t,e);++o<u&&t(n[o],o,n);)r++}else if(r=t,null==r||e)return n[0];return J(n,0,oe(ae(0,r),u))}}function bt(n,t,e,r){var u=-1,o=n?n.length:0,i=[];
|
21
|
+
for(typeof t!="boolean"&&null!=t&&(r=e,e=t,t=!1),null!=e&&(e=a.createCallback(e,r));++u<o;)r=n[u],e&&(r=e(r,u,n)),me(r)?Wt.apply(i,t?r:bt(r)):i.push(r);return i}function _t(n,t,e){var r=-1,u=n?n.length:0;if(typeof e=="number")r=(0>e?ae(0,u+e):e||0)-1;else if(e)return r=Ct(n,t),n[r]===t?r:-1;for(;++r<u;)if(n[r]===t)return r;return-1}function wt(n,t,e){if(typeof t!="number"&&null!=t){var r=0,u=-1,o=n?n.length:0;for(t=a.createCallback(t,e);++u<o&&t(n[u],u,n);)r++}else r=null==t||e?1:ae(0,t);return J(n,r)
|
22
|
+
}function Ct(n,t,e,r){var u=0,o=n?n.length:u;for(e=e?a.createCallback(e,r,1):Et,t=e(t);u<o;)r=u+o>>>1,e(n[r])<t?u=r+1:o=r;return u}function jt(n,t,e,r){var u=-1,o=n?n.length:0,i=[],c=i;typeof t!="boolean"&&null!=t&&(r=e,e=t,t=!1);var p=!t&&o>=l;if(p)var s={};for(null!=e&&(c=[],e=a.createCallback(e,r));++u<o;){r=n[u];var v=e?e(r,u,n):r;if(p)var g=f+v,g=s[g]?!(c=s[g]):c=s[g]=[];(t?!u||c[c.length-1]!==v:g||0>_t(c,v))&&((e||p)&&c.push(v),i.push(r))}return i}function kt(n,t){for(var e=-1,r=n?n.length:0,u={};++e<r;){var a=n[e];
|
23
|
+
t?u[a]=t[e]:u[a[0]]=a[1]}return u}function xt(n,t){return ve.fastBind||ne&&2<arguments.length?ne.call.apply(ne,arguments):z(n,t,le.call(arguments,2))}function Ot(n){var t=le.call(arguments,1);return Yt(function(){n.apply(e,t)},1)}function Et(n){return n}function St(n){pt(Y(n),function(t){var e=a[t]=n[t];a.prototype[t]=function(){var n=this.__wrapped__,t=[n];return Wt.apply(t,arguments),t=e.apply(a,t),n&&typeof n=="object"&&n==t?this:new V(t)}})}function At(){return this.__wrapped__}r=r?F.defaults(n.Object(),r,F.pick(n,C)):n;
|
24
|
+
var It=r.Array,Pt=r.Boolean,Nt=r.Date,$t=r.Function,qt=r.Math,Bt=r.Number,Ft=r.Object,Rt=r.RegExp,Tt=r.String,Dt=r.TypeError,zt=It(),Lt=Ft(),Kt=r._,Mt=Rt("^"+Tt(Lt.valueOf).replace(/[.*+?^${}()|[\]\\]/g,"\\$&").replace(/valueOf|for [^\]]+/g,".+?")+"$"),Ut=qt.ceil,Vt=r.clearTimeout,Gt=zt.concat,Ht=qt.floor,Jt=Mt.test(Jt=Ft.getPrototypeOf)&&Jt,Qt=Lt.hasOwnProperty,Wt=zt.push,Xt=r.setImmediate,Yt=r.setTimeout,Zt=Lt.toString,ne=Mt.test(ne=Zt.bind)&&ne,te=Mt.test(te=It.isArray)&&te,ee=r.isFinite,re=r.isNaN,ue=Mt.test(ue=Ft.keys)&&ue,ae=qt.max,oe=qt.min,ie=r.parseInt,fe=qt.random,le=zt.slice,ce=Mt.test(r.attachEvent),pe=ne&&!/\n|true/.test(ne+ce),se={};
|
25
|
+
se[x]=It,se[O]=Pt,se[E]=Nt,se[I]=Ft,se[A]=Bt,se[P]=Rt,se[N]=Tt;var ve=a.support={};(function(){var n=function(){this.x=1},t={0:1,length:1},e=[];n.prototype={valueOf:1,y:1};for(var r in new n)e.push(r);for(r in arguments);ve.argsObject=arguments.constructor==Ft&&!(arguments instanceof It),ve.argsClass=W(arguments),ve.enumPrototypes=n.propertyIsEnumerable("prototype"),ve.fastBind=ne&&!pe,ve.ownLast="x"!=e[0],ve.nonEnumArgs=0!=r,ve.nonEnumShadows=!/valueOf/.test(e),ve.spliceObjects=(zt.splice.call(t,0,1),!t[0]),ve.unindexedChars="xx"!="x"[0]+Ft("x")[0];
|
26
|
+
try{ve.nodeClass=!(Zt.call(document)==I&&!({toString:0}+""))}catch(u){ve.nodeClass=!0}})(1),a.templateSettings={escape:/<%-([\s\S]+?)%>/g,evaluate:/<%([\s\S]+?)%>/g,interpolate:h,variable:"",imports:{_:a}};var ge={a:"q,w,g",h:"var a=arguments,b=0,c=typeof g=='number'?2:a.length;while(++b<c){m=a[b];if(m&&r[typeof m]){",f:"if(typeof u[i]=='undefined')u[i]=m[i]",c:"}}"},ye={a:"e,d,x",h:"d=d&&typeof x=='undefined'?d:p.createCallback(d,x)",b:"typeof n=='number'",f:"if(d(m[i],i,e)===false)return u"},he={h:"if(!r[typeof m])return u;"+ye.h,b:!1};
|
27
|
+
V.prototype=a.prototype,ve.argsClass||(W=function(n){return n?Qt.call(n,"callee"):!1});var me=te||function(n){return n?typeof n=="object"&&Zt.call(n)==x:!1},de=L({a:"q",e:"[]",h:"if(!(r[typeof q]))return u",f:"u.push(i)",b:!1}),be=ue?function(n){return et(n)?ve.enumPrototypes&&typeof n=="function"||ve.nonEnumArgs&&n.length&&W(n)?de(n):ue(n):[]}:de,_e=L(ye),we={"&":"&","<":"<",">":">",'"':""","'":"'"},Ce=Z(we),je=L(ge,{h:ge.h.replace(";",";if(c>3&&typeof a[c-2]=='function'){var d=p.createCallback(a[--c-1],a[c--],2);}else if(c>2&&typeof a[c-1]=='function'){d=a[--c];}"),f:"u[i]=d?d(u[i],m[i]):m[i]"}),ke=L(ge),xe=L(ye,he,{i:!1}),Oe=L(ye,he);
|
28
|
+
tt(/x/)&&(tt=function(n){return typeof n=="function"&&Zt.call(n)==S});var Ee=Jt?function(n){if(!n||Zt.call(n)!=I||!ve.argsClass&&W(n))return!1;var t=n.valueOf,e=typeof t=="function"&&(e=Jt(t))&&Jt(e);return e?n==e||Jt(n)==e:H(n)}:H;pe&&u&&typeof Xt=="function"&&(Ot=xt(Xt,r));var Se=8==ie(m+"08")?ie:function(n,t){return ie(ut(n)?n.replace(d,""):n,t||0)};return a.after=function(n,t){return 1>n?t():function(){return 1>--n?t.apply(this,arguments):void 0}},a.assign=je,a.at=function(n){var t=-1,e=Gt.apply(zt,le.call(arguments,1)),r=e.length,u=It(r);
|
29
|
+
for(ve.unindexedChars&&ut(n)&&(n=n.split(""));++t<r;)u[t]=n[e[t]];return u},a.bind=xt,a.bindAll=function(n){for(var t=1<arguments.length?Gt.apply(zt,le.call(arguments,1)):Y(n),e=-1,r=t.length;++e<r;){var u=t[e];n[u]=xt(n[u],n)}return n},a.bindKey=function(n,t){return z(n,t,le.call(arguments,2),i)},a.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},a.compose=function(){var n=arguments;return function(){for(var t=arguments,e=n.length;e--;)t=[n[e].apply(this,t)];
|
30
|
+
return t[0]}},a.countBy=function(n,t,e){var r={};return t=a.createCallback(t,e),pt(n,function(n,e,u){e=Tt(t(n,e,u)),Qt.call(r,e)?r[e]++:r[e]=1}),r},a.createCallback=function(n,t,e){if(null==n)return Et;var r=typeof n;if("function"!=r){if("object"!=r)return function(t){return t[n]};var u=be(n);return function(t){for(var e=u.length,r=!1;e--&&(r=nt(t[u[e]],n[u[e]],i)););return r}}return typeof t!="undefined"?1===e?function(e){return n.call(t,e)}:2===e?function(e,r){return n.call(t,e,r)}:4===e?function(e,r,u,a){return n.call(t,e,r,u,a)
|
31
|
+
}:function(e,r,u){return n.call(t,e,r,u)}:n},a.debounce=function(n,t,e){function r(){a=f=null,l&&(o=n.apply(i,u))}var u,a,o,i,f,l=!0;if(!0===e)var c=!0,l=!1;else e&&q[typeof e]&&(c=e.leading,l="trailing"in e?e.trailing:l);return function(){return u=arguments,i=this,Vt(f),!a&&c?(a=!0,o=n.apply(i,u)):f=Yt(r,t),o}},a.defaults=ke,a.defer=Ot,a.delay=function(n,t){var r=le.call(arguments,2);return Yt(function(){n.apply(e,r)},t)},a.difference=mt,a.filter=lt,a.flatten=bt,a.forEach=pt,a.forIn=xe,a.forOwn=Oe,a.functions=Y,a.groupBy=function(n,t,e){var r={};
|
32
|
+
return t=a.createCallback(t,e),pt(n,function(n,e,u){e=Tt(t(n,e,u)),(Qt.call(r,e)?r[e]:r[e]=[]).push(n)}),r},a.initial=function(n,t,e){if(!n)return[];var r=0,u=n.length;if(typeof t!="number"&&null!=t){var o=u;for(t=a.createCallback(t,e);o--&&t(n[o],o,n);)r++}else r=null==t||e?1:t||r;return J(n,0,oe(ae(0,u-r),u))},a.intersection=function(n){var t=arguments,e=t.length,r={0:{}},u=-1,a=n?n.length:0,o=a>=l,i=[],c=i;n:for(;++u<a;){var p=n[u];if(o)var s=f+p,s=r[0][s]?!(c=r[0][s]):c=r[0][s]=[];if(s||0>_t(c,p)){o&&c.push(p);
|
33
|
+
for(var v=e;--v;)if(!(r[v]||(r[v]=R(t[v])))(p))continue n;i.push(p)}}return i},a.invert=Z,a.invoke=function(n,t){var e=le.call(arguments,2),r=-1,u=typeof t=="function",a=n?n.length:0,o=It(typeof a=="number"?a:0);return pt(n,function(n){o[++r]=(u?t:n[t]).apply(n,e)}),o},a.keys=be,a.map=st,a.max=vt,a.memoize=function(n,t){var e={};return function(){var r=f+(t?t.apply(this,arguments):arguments[0]);return Qt.call(e,r)?e[r]:e[r]=n.apply(this,arguments)}},a.merge=at,a.min=function(n,t,e){var r=1/0,u=r;
|
34
|
+
if(!t&&me(n)){e=-1;for(var o=n.length;++e<o;){var i=n[e];i<u&&(u=i)}}else t=!t&&ut(n)?T:a.createCallback(t,e),_e(n,function(n,e,a){e=t(n,e,a),e<r&&(r=e,u=n)});return u},a.omit=function(n,t,e){var r=typeof t=="function",u={};if(r)t=a.createCallback(t,e);else var o=Gt.apply(zt,le.call(arguments,1));return xe(n,function(n,e,a){(r?!t(n,e,a):0>_t(o,e))&&(u[e]=n)}),u},a.once=function(n){var t,e;return function(){return t?e:(t=!0,e=n.apply(this,arguments),n=null,e)}},a.pairs=function(n){for(var t=-1,e=be(n),r=e.length,u=It(r);++t<r;){var a=e[t];
|
35
|
+
u[t]=[a,n[a]]}return u},a.partial=function(n){return z(n,le.call(arguments,1))},a.partialRight=function(n){return z(n,le.call(arguments,1),null,i)},a.pick=function(n,t,e){var r={};if(typeof t!="function")for(var u=-1,o=Gt.apply(zt,le.call(arguments,1)),i=et(n)?o.length:0;++u<i;){var f=o[u];f in n&&(r[f]=n[f])}else t=a.createCallback(t,e),xe(n,function(n,e,u){t(n,e,u)&&(r[e]=n)});return r},a.pluck=st,a.range=function(n,t,e){n=+n||0,e=+e||1,null==t&&(t=n,n=0);var r=-1;t=ae(0,Ut((t-n)/e));for(var u=It(t);++r<t;)u[r]=n,n+=e;
|
36
|
+
return u},a.reject=function(n,t,e){return t=a.createCallback(t,e),lt(n,function(n,e,r){return!t(n,e,r)})},a.rest=wt,a.shuffle=function(n){var t=-1,e=n?n.length:0,r=It(typeof e=="number"?e:0);return pt(n,function(n){var e=Ht(fe()*(++t+1));r[t]=r[e],r[e]=n}),r},a.sortBy=function(n,t,e){var r=-1,u=n?n.length:0,o=It(typeof u=="number"?u:0);for(t=a.createCallback(t,e),pt(n,function(n,e,u){o[++r]={a:t(n,e,u),b:r,c:n}}),u=o.length,o.sort(D);u--;)o[u]=o[u].c;return o},a.tap=function(n,t){return t(n),n},a.throttle=function(n,t,e){function r(){i=null,c&&(f=new Nt,a=n.apply(o,u))
|
37
|
+
}var u,a,o,i,f=0,l=!0,c=!0;return!1===e?l=!1:e&&q[typeof e]&&(l="leading"in e?e.leading:l,c="trailing"in e?e.trailing:c),function(){var e=new Nt;!i&&!l&&(f=e);var c=t-(e-f);return u=arguments,o=this,0<c?i||(i=Yt(r,c)):(Vt(i),i=null,f=e,a=n.apply(o,u)),a}},a.times=function(n,t,e){n=-1<(n=+n)?n:0;var r=-1,u=It(n);for(t=a.createCallback(t,e,1);++r<n;)u[r]=t(r);return u},a.toArray=function(n){return n&&typeof n.length=="number"?ve.unindexedChars&&ut(n)?n.split(""):J(n):ot(n)},a.union=function(n){return me(n)||(arguments[0]=n?le.call(n):zt),jt(Gt.apply(zt,arguments))
|
38
|
+
},a.uniq=jt,a.unzip=function(n){for(var t=-1,e=n?n.length:0,r=e?vt(st(n,"length")):0,u=It(r);++t<e;)for(var a=-1,o=n[t];++a<r;)(u[a]||(u[a]=It(e)))[t]=o[a];return u},a.values=ot,a.where=lt,a.without=function(n){return mt(n,le.call(arguments,1))},a.wrap=function(n,t){return function(){var e=[n];return Wt.apply(e,arguments),t.apply(this,e)}},a.zip=function(n){for(var t=-1,e=n?vt(st(arguments,"length")):0,r=It(e);++t<e;)r[t]=st(arguments,t);return r},a.zipObject=kt,a.collect=st,a.drop=wt,a.each=pt,a.extend=je,a.methods=Y,a.object=kt,a.select=lt,a.tail=wt,a.unique=jt,St(a),a.clone=X,a.cloneDeep=function(n,t,e){return X(n,!0,t,e)
|
39
|
+
},a.contains=it,a.escape=function(n){return null==n?"":Tt(n).replace(_,M)},a.every=ft,a.find=ct,a.findIndex=function(n,t,e){var r=-1,u=n?n.length:0;for(t=a.createCallback(t,e);++r<u;)if(t(n[r],r,n))return r;return-1},a.findKey=function(n,t,e){var r;return t=a.createCallback(t,e),Oe(n,function(n,e,u){return t(n,e,u)?(r=e,!1):void 0}),r},a.has=function(n,t){return n?Qt.call(n,t):!1},a.identity=Et,a.indexOf=_t,a.isArguments=W,a.isArray=me,a.isBoolean=function(n){return!0===n||!1===n||Zt.call(n)==O},a.isDate=function(n){return n?typeof n=="object"&&Zt.call(n)==E:!1
|
40
|
+
},a.isElement=function(n){return n?1===n.nodeType:!1},a.isEmpty=function(n){var t=!0;if(!n)return t;var e=Zt.call(n),r=n.length;return e==x||e==N||(ve.argsClass?e==k:W(n))||e==I&&typeof r=="number"&&tt(n.splice)?!r:(Oe(n,function(){return t=!1}),t)},a.isEqual=nt,a.isFinite=function(n){return ee(n)&&!re(parseFloat(n))},a.isFunction=tt,a.isNaN=function(n){return rt(n)&&n!=+n},a.isNull=function(n){return null===n},a.isNumber=rt,a.isObject=et,a.isPlainObject=Ee,a.isRegExp=function(n){return n?q[typeof n]&&Zt.call(n)==P:!1
|
41
|
+
},a.isString=ut,a.isUndefined=function(n){return typeof n=="undefined"},a.lastIndexOf=function(n,t,e){var r=n?n.length:0;for(typeof e=="number"&&(r=(0>e?ae(0,r+e):oe(e,r-1))+1);r--;)if(n[r]===t)return r;return-1},a.mixin=St,a.noConflict=function(){return r._=Kt,this},a.parseInt=Se,a.random=function(n,t){return null==n&&null==t&&(t=1),n=+n||0,null==t&&(t=n,n=0),n+Ht(fe()*((+t||0)-n+1))},a.reduce=gt,a.reduceRight=yt,a.result=function(n,t){var r=n?n[t]:e;return tt(r)?n[t]():r},a.runInContext=t,a.size=function(n){var t=n?n.length:0;
|
42
|
+
return typeof t=="number"?t:be(n).length},a.some=ht,a.sortedIndex=Ct,a.template=function(n,t,r){var u=a.templateSettings;n||(n=""),r=ke({},r,u);var o,i=ke({},r.imports,u.imports),u=be(i),i=ot(i),f=0,l=r.interpolate||b,v="__p+='",l=Rt((r.escape||b).source+"|"+l.source+"|"+(l===h?g:b).source+"|"+(r.evaluate||b).source+"|$","g");n.replace(l,function(t,e,r,u,a,i){return r||(r=u),v+=n.slice(f,i).replace(w,K),e&&(v+="'+__e("+e+")+'"),a&&(o=!0,v+="';"+a+";__p+='"),r&&(v+="'+((__t=("+r+"))==null?'':__t)+'"),f=i+t.length,t
|
43
|
+
}),v+="';\n",l=r=r.variable,l||(r="obj",v="with("+r+"){"+v+"}"),v=(o?v.replace(c,""):v).replace(p,"$1").replace(s,"$1;"),v="function("+r+"){"+(l?"":r+"||("+r+"={});")+"var __t,__p='',__e=_.escape"+(o?",__j=Array.prototype.join;function print(){__p+=__j.call(arguments,'')}":";")+v+"return __p}";try{var y=$t(u,"return "+v).apply(e,i)}catch(m){throw m.source=v,m}return t?y(t):(y.source=v,y)},a.unescape=function(n){return null==n?"":Tt(n).replace(v,Q)},a.uniqueId=function(n){var t=++o;return Tt(null==n?"":n)+t
|
44
|
+
},a.all=ft,a.any=ht,a.detect=ct,a.foldl=gt,a.foldr=yt,a.include=it,a.inject=gt,Oe(a,function(n,t){a.prototype[t]||(a.prototype[t]=function(){var t=[this.__wrapped__];return Wt.apply(t,arguments),n.apply(a,t)})}),a.first=dt,a.last=function(n,t,e){if(n){var r=0,u=n.length;if(typeof t!="number"&&null!=t){var o=u;for(t=a.createCallback(t,e);o--&&t(n[o],o,n);)r++}else if(r=t,null==r||e)return n[u-1];return J(n,ae(0,u-r))}},a.take=dt,a.head=dt,Oe(a,function(n,t){a.prototype[t]||(a.prototype[t]=function(t,e){var r=n(this.__wrapped__,t,e);
|
45
|
+
return null==t||e&&typeof t!="function"?r:new V(r)})}),a.VERSION="1.2.1",a.prototype.toString=function(){return Tt(this.__wrapped__)},a.prototype.value=At,a.prototype.valueOf=At,_e(["join","pop","shift"],function(n){var t=zt[n];a.prototype[n]=function(){return t.apply(this.__wrapped__,arguments)}}),_e(["push","reverse","sort","unshift"],function(n){var t=zt[n];a.prototype[n]=function(){return t.apply(this.__wrapped__,arguments),this}}),_e(["concat","slice","splice"],function(n){var t=zt[n];a.prototype[n]=function(){return new V(t.apply(this.__wrapped__,arguments))
|
46
|
+
}}),ve.spliceObjects||_e(["pop","shift","splice"],function(n){var t=zt[n],e="splice"==n;a.prototype[n]=function(){var n=this.__wrapped__,r=t.apply(n,arguments);return 0===n.length&&delete n[0],e?new V(r):r}}),a}var e,r=typeof exports=="object"&&exports,u=typeof module=="object"&&module&&module.exports==r&&module,a=typeof global=="object"&&global;(a.global===a||a.window===a)&&(n=a);var o=0,i={},f=+new Date+"",l=200,c=/\b__p\+='';/g,p=/\b(__p\+=)''\+/g,s=/(__e\(.*?\)|\b__t\))\+'';/g,v=/&(?:amp|lt|gt|quot|#39);/g,g=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,y=/\w*$/,h=/<%=([\s\S]+?)%>/g,m=" \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",d=RegExp("^["+m+"]*0+(?=.$)"),b=/($^)/,_=/[&<>"']/g,w=/['\n\r\t\u2028\u2029\\]/g,C="Array Boolean Date Function Math Number Object RegExp String _ attachEvent clearTimeout isFinite isNaN parseInt setImmediate setTimeout".split(" "),j="constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" "),k="[object Arguments]",x="[object Array]",O="[object Boolean]",E="[object Date]",S="[object Function]",A="[object Number]",I="[object Object]",P="[object RegExp]",N="[object String]",$={};
|
47
|
+
$[S]=!1,$[k]=$[x]=$[O]=$[E]=$[A]=$[I]=$[P]=$[N]=!0;var q={"boolean":!1,"function":!0,object:!0,number:!1,string:!1,undefined:!1},B={"\\":"\\","'":"'","\n":"n","\r":"r","\t":"t","\u2028":"u2028","\u2029":"u2029"},F=t();typeof define=="function"&&typeof define.amd=="object"&&define.amd?(n._=F,define(function(){return F})):r&&!r.nodeType?u?(u.exports=F)._=F:r._=F:n._=F})(this);
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/**
|
2
2
|
* @license
|
3
|
-
* Lo-Dash 1.2.
|
3
|
+
* Lo-Dash 1.2.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.4.4 <http://underscorejs.org/>
|
@@ -56,8 +56,20 @@
|
|
56
56
|
/** Used to match "interpolate" template delimiters */
|
57
57
|
var reInterpolate = /<%=([\s\S]+?)%>/g;
|
58
58
|
|
59
|
-
/** Used to
|
60
|
-
var
|
59
|
+
/** Used to detect and test whitespace */
|
60
|
+
var whitespace = (
|
61
|
+
// whitespace
|
62
|
+
' \t\x0B\f\xA0\ufeff' +
|
63
|
+
|
64
|
+
// line terminators
|
65
|
+
'\n\r\u2028\u2029' +
|
66
|
+
|
67
|
+
// unicode category "Zs" space separators
|
68
|
+
'\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000'
|
69
|
+
);
|
70
|
+
|
71
|
+
/** Used to match leading whitespace and zeros to be removed */
|
72
|
+
var reLeadingSpacesAndZeros = RegExp('^[' + whitespace + ']*0+(?=.$)');
|
61
73
|
|
62
74
|
/** Used to ensure capturing order of template delimiters */
|
63
75
|
var reNoMatch = /($^)/;
|
@@ -545,7 +557,7 @@
|
|
545
557
|
// check that the constructor is `Object` (i.e. `Object instanceof Object`)
|
546
558
|
var ctor = value.constructor;
|
547
559
|
|
548
|
-
if (isFunction(ctor) ? ctor instanceof ctor :
|
560
|
+
if (isFunction(ctor) ? ctor instanceof ctor : true) {
|
549
561
|
// In most environments an object's own properties are iterated before
|
550
562
|
// its inherited properties. If the last iterated property is an object's
|
551
563
|
// own property then there are no inherited enumerable properties.
|
@@ -618,6 +630,24 @@
|
|
618
630
|
return toString.call(value) == argsClass;
|
619
631
|
}
|
620
632
|
|
633
|
+
/**
|
634
|
+
* Checks if `value` is an array.
|
635
|
+
*
|
636
|
+
* @static
|
637
|
+
* @memberOf _
|
638
|
+
* @category Objects
|
639
|
+
* @param {Mixed} value The value to check.
|
640
|
+
* @returns {Boolean} Returns `true`, if the `value` is an array, else `false`.
|
641
|
+
* @example
|
642
|
+
*
|
643
|
+
* (function() { return _.isArray(arguments); })();
|
644
|
+
* // => false
|
645
|
+
*
|
646
|
+
* _.isArray([1, 2, 3]);
|
647
|
+
* // => true
|
648
|
+
*/
|
649
|
+
var isArray = nativeIsArray;
|
650
|
+
|
621
651
|
/**
|
622
652
|
* A fallback implementation of `Object.keys` which produces an array of the
|
623
653
|
* given object's own enumerable property names.
|
@@ -1148,28 +1178,6 @@
|
|
1148
1178
|
return result;
|
1149
1179
|
}
|
1150
1180
|
|
1151
|
-
/**
|
1152
|
-
* Checks if `value` is an array.
|
1153
|
-
*
|
1154
|
-
* @static
|
1155
|
-
* @memberOf _
|
1156
|
-
* @category Objects
|
1157
|
-
* @param {Mixed} value The value to check.
|
1158
|
-
* @returns {Boolean} Returns `true`, if the `value` is an array, else `false`.
|
1159
|
-
* @example
|
1160
|
-
*
|
1161
|
-
* (function() { return _.isArray(arguments); })();
|
1162
|
-
* // => false
|
1163
|
-
*
|
1164
|
-
* _.isArray([1, 2, 3]);
|
1165
|
-
* // => true
|
1166
|
-
*/
|
1167
|
-
function isArray(value) {
|
1168
|
-
// `instanceof` may cause a memory leak in IE 7 if `value` is a host object
|
1169
|
-
// http://ajaxian.com/archives/working-aroung-the-instanceof-memory-leak
|
1170
|
-
return value instanceof Array || nativeIsArray(value);
|
1171
|
-
}
|
1172
|
-
|
1173
1181
|
/**
|
1174
1182
|
* Checks if `value` is a boolean value.
|
1175
1183
|
*
|
@@ -1201,7 +1209,7 @@
|
|
1201
1209
|
* // => true
|
1202
1210
|
*/
|
1203
1211
|
function isDate(value) {
|
1204
|
-
return value
|
1212
|
+
return value ? (typeof value == 'object' && toString.call(value) == dateClass) : false;
|
1205
1213
|
}
|
1206
1214
|
|
1207
1215
|
/**
|
@@ -1648,7 +1656,7 @@
|
|
1648
1656
|
* // => true
|
1649
1657
|
*/
|
1650
1658
|
function isRegExp(value) {
|
1651
|
-
return value
|
1659
|
+
return value ? (typeof value == 'object' && toString.call(value) == regexpClass) : false;
|
1652
1660
|
}
|
1653
1661
|
|
1654
1662
|
/**
|
@@ -3171,7 +3179,7 @@
|
|
3171
3179
|
/**
|
3172
3180
|
* Flattens a nested array (the nesting can be to any depth). If `isShallow`
|
3173
3181
|
* is truthy, `array` will only be flattened a single level. If `callback`
|
3174
|
-
* is passed, each element of `array` is passed through a callback` before
|
3182
|
+
* is passed, each element of `array` is passed through a `callback` before
|
3175
3183
|
* flattening. The `callback` is bound to `thisArg` and invoked with three
|
3176
3184
|
* arguments; (value, index, array).
|
3177
3185
|
*
|
@@ -3730,7 +3738,7 @@
|
|
3730
3738
|
* Creates a duplicate-value-free version of the `array` using strict equality
|
3731
3739
|
* for comparisons, i.e. `===`. If the `array` is already sorted, passing `true`
|
3732
3740
|
* for `isSorted` will run a faster algorithm. If `callback` is passed, each
|
3733
|
-
* element of `array` is passed through a callback` before uniqueness is computed.
|
3741
|
+
* element of `array` is passed through a `callback` before uniqueness is computed.
|
3734
3742
|
* The `callback` is bound to `thisArg` and invoked with three arguments; (value, index, array).
|
3735
3743
|
*
|
3736
3744
|
* If a property name is passed for `callback`, the created "_.pluck" style
|
@@ -4193,6 +4201,10 @@
|
|
4193
4201
|
* and/or trailing edge of the `wait` timeout. Subsequent calls to the debounced
|
4194
4202
|
* function will return the result of the last `func` call.
|
4195
4203
|
*
|
4204
|
+
* Note: If `leading` and `trailing` options are `true`, `func` will be called
|
4205
|
+
* on the trailing edge of the timeout only if the the debounced function is
|
4206
|
+
* invoked more than once during the `wait` timeout.
|
4207
|
+
*
|
4196
4208
|
* @static
|
4197
4209
|
* @memberOf _
|
4198
4210
|
* @category Functions
|
@@ -4206,16 +4218,22 @@
|
|
4206
4218
|
*
|
4207
4219
|
* var lazyLayout = _.debounce(calculateLayout, 300);
|
4208
4220
|
* jQuery(window).on('resize', lazyLayout);
|
4221
|
+
*
|
4222
|
+
* jQuery('#postbox').on('click', _.debounce(sendMail, 200, {
|
4223
|
+
* 'leading': true,
|
4224
|
+
* 'trailing': false
|
4225
|
+
* });
|
4209
4226
|
*/
|
4210
4227
|
function debounce(func, wait, options) {
|
4211
4228
|
var args,
|
4229
|
+
inited,
|
4212
4230
|
result,
|
4213
4231
|
thisArg,
|
4214
4232
|
timeoutId,
|
4215
4233
|
trailing = true;
|
4216
4234
|
|
4217
4235
|
function delayed() {
|
4218
|
-
timeoutId = null;
|
4236
|
+
inited = timeoutId = null;
|
4219
4237
|
if (trailing) {
|
4220
4238
|
result = func.apply(thisArg, args);
|
4221
4239
|
}
|
@@ -4228,15 +4246,15 @@
|
|
4228
4246
|
trailing = 'trailing' in options ? options.trailing : trailing;
|
4229
4247
|
}
|
4230
4248
|
return function() {
|
4231
|
-
var isLeading = leading && !timeoutId;
|
4232
4249
|
args = arguments;
|
4233
4250
|
thisArg = this;
|
4234
|
-
|
4235
4251
|
clearTimeout(timeoutId);
|
4236
|
-
timeoutId = setTimeout(delayed, wait);
|
4237
4252
|
|
4238
|
-
if (
|
4253
|
+
if (!inited && leading) {
|
4254
|
+
inited = true;
|
4239
4255
|
result = func.apply(thisArg, args);
|
4256
|
+
} else {
|
4257
|
+
timeoutId = setTimeout(delayed, wait);
|
4240
4258
|
}
|
4241
4259
|
return result;
|
4242
4260
|
};
|
@@ -4406,12 +4424,14 @@
|
|
4406
4424
|
|
4407
4425
|
/**
|
4408
4426
|
* Creates a function that, when executed, will only call the `func` function
|
4409
|
-
* at most once per every `wait` milliseconds.
|
4410
|
-
*
|
4411
|
-
*
|
4412
|
-
*
|
4413
|
-
*
|
4414
|
-
*
|
4427
|
+
* at most once per every `wait` milliseconds. Pass an `options` object to
|
4428
|
+
* indicate that `func` should be invoked on the leading and/or trailing edge
|
4429
|
+
* of the `wait` timeout. Subsequent calls to the throttled function will
|
4430
|
+
* return the result of the last `func` call.
|
4431
|
+
*
|
4432
|
+
* Note: If `leading` and `trailing` options are `true`, `func` will be called
|
4433
|
+
* on the trailing edge of the timeout only if the the throttled function is
|
4434
|
+
* invoked more than once during the `wait` timeout.
|
4415
4435
|
*
|
4416
4436
|
* @static
|
4417
4437
|
* @memberOf _
|
@@ -4426,6 +4446,10 @@
|
|
4426
4446
|
*
|
4427
4447
|
* var throttled = _.throttle(updatePosition, 100);
|
4428
4448
|
* jQuery(window).on('scroll', throttled);
|
4449
|
+
*
|
4450
|
+
* jQuery('.interactive').on('click', _.throttle(renewToken, 300000, {
|
4451
|
+
* 'trailing': false
|
4452
|
+
* }));
|
4429
4453
|
*/
|
4430
4454
|
function throttle(func, wait, options) {
|
4431
4455
|
var args,
|
@@ -4437,10 +4461,9 @@
|
|
4437
4461
|
trailing = true;
|
4438
4462
|
|
4439
4463
|
function trailingCall() {
|
4440
|
-
lastCalled = new Date;
|
4441
4464
|
timeoutId = null;
|
4442
|
-
|
4443
4465
|
if (trailing) {
|
4466
|
+
lastCalled = new Date;
|
4444
4467
|
result = func.apply(thisArg, args);
|
4445
4468
|
}
|
4446
4469
|
}
|
@@ -4597,6 +4620,8 @@
|
|
4597
4620
|
|
4598
4621
|
/**
|
4599
4622
|
* Converts the given `value` into an integer of the specified `radix`.
|
4623
|
+
* If `radix` is `undefined` or `0`, a `radix` of `10` is used unless the
|
4624
|
+
* `value` is a hexadecimal, in which case a `radix` of `16` is used.
|
4600
4625
|
*
|
4601
4626
|
* Note: This method avoids differences in native ES3 and ES5 `parseInt`
|
4602
4627
|
* implementations. See http://es5.github.com/#E.
|
@@ -4604,16 +4629,17 @@
|
|
4604
4629
|
* @static
|
4605
4630
|
* @memberOf _
|
4606
4631
|
* @category Utilities
|
4607
|
-
* @param {
|
4632
|
+
* @param {String} value The value to parse.
|
4633
|
+
* @param {Number} [radix] The radix used to interpret the value to parse.
|
4608
4634
|
* @returns {Number} Returns the new integer value.
|
4609
4635
|
* @example
|
4610
4636
|
*
|
4611
4637
|
* _.parseInt('08');
|
4612
4638
|
* // => 8
|
4613
4639
|
*/
|
4614
|
-
var parseInt = nativeParseInt('08') == 8 ? nativeParseInt : function(value, radix) {
|
4640
|
+
var parseInt = nativeParseInt(whitespace + '08') == 8 ? nativeParseInt : function(value, radix) {
|
4615
4641
|
// Firefox and Opera still follow the ES3 specified implementation of `parseInt`
|
4616
|
-
return nativeParseInt(isString(value) ? value.replace(
|
4642
|
+
return nativeParseInt(isString(value) ? value.replace(reLeadingSpacesAndZeros, '') : value, radix || 0);
|
4617
4643
|
};
|
4618
4644
|
|
4619
4645
|
/**
|
@@ -5166,7 +5192,7 @@
|
|
5166
5192
|
* @memberOf _
|
5167
5193
|
* @type String
|
5168
5194
|
*/
|
5169
|
-
lodash.VERSION = '1.2.
|
5195
|
+
lodash.VERSION = '1.2.1';
|
5170
5196
|
|
5171
5197
|
// add "Chaining" functions to the wrapper
|
5172
5198
|
lodash.prototype.toString = wrapperToString;
|