ramda-adjunct
Advanced tools
Comparing version 0.6.0 to 0.7.0
@@ -0,1 +1,14 @@ | ||
<a name="0.7.0"></a> | ||
# [0.7.0](https://github.com/char0n/ramda-adjunct/compare/v0.6.0...v0.7.0) (2017-03-26) | ||
### Features | ||
* add isNotInteger ([494094d](https://github.com/char0n/ramda-adjunct/commit/494094d)), closes [#10](https://github.com/char0n/ramda-adjunct/issues/10) | ||
* isFinite ([f3ed894](https://github.com/char0n/ramda-adjunct/commit/f3ed894)) | ||
* isInteger ([466db58](https://github.com/char0n/ramda-adjunct/commit/466db58)) | ||
* isNotFinite ([1edbebc](https://github.com/char0n/ramda-adjunct/commit/1edbebc)) | ||
<a name="0.6.0"></a> | ||
@@ -2,0 +15,0 @@ # [0.6.0](https://github.com/char0n/ramda-adjunct/compare/v0.5.1...v0.6.0) (2017-03-16) |
@@ -76,3 +76,3 @@ (function webpackUniversalModuleDefinition(root, factory) { | ||
/******/ // Load entry module and return exports | ||
/******/ return __webpack_require__(__webpack_require__.s = 40); | ||
/******/ return __webpack_require__(__webpack_require__.s = 46); | ||
/******/ }) | ||
@@ -96,6 +96,6 @@ /************************************************************************/ | ||
var _isFunction = __webpack_require__(36); | ||
var _isFunction = __webpack_require__(42); | ||
var isGeneratorFunction = __webpack_require__(4); | ||
var isAsyncFunction = __webpack_require__(3); | ||
var isGeneratorFunction = __webpack_require__(6); | ||
var isAsyncFunction = __webpack_require__(4); | ||
@@ -137,3 +137,3 @@ /* eslint-disable max-len */ | ||
var isNull = __webpack_require__(5); | ||
var isNull = __webpack_require__(7); | ||
@@ -167,2 +167,32 @@ /** | ||
var _isNumber = __webpack_require__(43); | ||
/** | ||
* Checks if value is a `Number` primitive or object | ||
* | ||
* @func isNumber | ||
* @memberOf RA | ||
* @since {@link https://char0n.github.io/ramda-adjunct/0.6.0|v0.6.0} | ||
* @category Type | ||
* @sig * -> Boolean | ||
* @param {*} val The value to test | ||
* @return {Boolean} | ||
* @see {@link RA.isNotNumber|isNotNumber} | ||
* @example | ||
* | ||
* RA.isNumber(5); // => true | ||
* RA.isNumber(Number.MAX_VALUE); // => true | ||
* RA.isNumber(-Infinity); // => true | ||
* RA.isNumber('5'); // => false | ||
*/ | ||
module.exports = _isNumber; | ||
/***/ }), | ||
/* 4 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
/* eslint-disable max-len */ | ||
@@ -194,3 +224,3 @@ /** | ||
/***/ }), | ||
/* 4 */ | ||
/* 5 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -204,2 +234,43 @@ | ||
var polyfill = __webpack_require__(38); | ||
/** | ||
* Checks whether the passed value is a finite `Number`. | ||
* | ||
* | ||
* @func isFinite | ||
* @memberOf RA | ||
* @since {@link https://char0n.github.io/ramda-adjunct/0.7.0|v0.7.0} | ||
* @category Type | ||
* @sig * -> Boolean | ||
* @param {*} val The value to test | ||
* @return {Boolean} | ||
* @see {@link RA.isNotFinite|isNotFinite} | ||
* @example | ||
* | ||
* RA.isFinite(Infinity); //=> false | ||
* RA.isFinite(NaN); //=> false | ||
* RA.isFinite(-Infinity); //=> false | ||
* | ||
* RA.isFinite(0); // true | ||
* RA.isFinite(2e64); // true | ||
* | ||
* RA.isFinite('0'); // => false | ||
* // would've been true with global isFinite('0') | ||
* RA.isFinite(null); // => false | ||
* // would've been true with global isFinite(null) | ||
*/ | ||
module.exports = or(Number.isFinite, polyfill); | ||
/***/ }), | ||
/* 6 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
or = _require.or; | ||
var isNotNull = __webpack_require__(2); | ||
@@ -242,3 +313,3 @@ | ||
/***/ }), | ||
/* 5 */ | ||
/* 7 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -274,3 +345,3 @@ | ||
/***/ }), | ||
/* 6 */ | ||
/* 8 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -281,32 +352,2 @@ | ||
var _isNumber = __webpack_require__(37); | ||
/** | ||
* Checks if value is a `Number` primitive or object | ||
* | ||
* @func isNumber | ||
* @memberOf RA | ||
* @since {@link https://char0n.github.io/ramda-adjunct/0.6.0|v0.6.0} | ||
* @category Type | ||
* @sig * -> Boolean | ||
* @param {*} val The value to test | ||
* @return {Boolean} | ||
* @see {@link RA.isNotNumber|isNotNumber} | ||
* @example | ||
* | ||
* RA.isNumber(5); // => true | ||
* RA.isNumber(Number.MAX_VALUE); // => true | ||
* RA.isNumber(-Infinity); // => true | ||
* RA.isNumber('5'); // => false | ||
*/ | ||
module.exports = _isNumber; | ||
/***/ }), | ||
/* 7 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
@@ -316,3 +357,3 @@ both = _require.both; | ||
var isNotNull = __webpack_require__(2); | ||
var isOfTypeObject = __webpack_require__(16); | ||
var isOfTypeObject = __webpack_require__(18); | ||
@@ -344,3 +385,3 @@ /* eslint-disable max-len */ | ||
/***/ }), | ||
/* 8 */ | ||
/* 9 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -351,3 +392,3 @@ | ||
var _isArray = __webpack_require__(35); | ||
var _isArray = __webpack_require__(41); | ||
@@ -375,3 +416,3 @@ /** | ||
/***/ }), | ||
/* 9 */ | ||
/* 10 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -406,3 +447,3 @@ | ||
/***/ }), | ||
/* 10 */ | ||
/* 11 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -436,3 +477,3 @@ | ||
/***/ }), | ||
/* 11 */ | ||
/* 12 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -446,5 +487,49 @@ | ||
var polyfill = __webpack_require__(34); | ||
var polyfill = __webpack_require__(39); | ||
/** | ||
* Checks whether the passed value is a an `integer`. | ||
* | ||
* | ||
* @func isInteger | ||
* @memberOf RA | ||
* @since {@link https://char0n.github.io/ramda-adjunct/0.7.0|v0.7.0} | ||
* @category Type | ||
* @sig * -> Boolean | ||
* @param {*} val The value to test | ||
* @return {Boolean} | ||
* @see {@link RA.isNotInteger|isNotInteger} | ||
* @example | ||
* | ||
* RA.isInteger(0); //=> true | ||
* RA.isInteger(1); //=> true | ||
* RA.isInteger(-100000); //=> true | ||
* | ||
* RA.isInteger(0.1); //=> false | ||
* RA.isInteger(Math.PI); //=> false | ||
* | ||
* RA.isInteger(NaN); //=> false | ||
* RA.isInteger(Infinity); //=> false | ||
* RA.isInteger(-Infinity); //=> false | ||
* RA.isInteger('10'); //=> false | ||
* RA.isInteger(true); //=> false | ||
* RA.isInteger(false); //=> false | ||
* RA.isInteger([1]); //=> false | ||
*/ | ||
module.exports = or(Number.isInteger, polyfill); | ||
/***/ }), | ||
/* 13 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
or = _require.or; | ||
var polyfill = __webpack_require__(40); | ||
/** | ||
* Checks whether the passed value is `NaN` and its type is `Number`. | ||
@@ -486,3 +571,3 @@ * It is a more robust version of the original, global isNaN(). | ||
/***/ }), | ||
/* 12 */ | ||
/* 14 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -499,3 +584,3 @@ | ||
var isFunction = __webpack_require__(1); | ||
var isOfTypeObject = __webpack_require__(16); | ||
var isOfTypeObject = __webpack_require__(18); | ||
@@ -527,3 +612,3 @@ /* eslint-disable max-len */ | ||
/***/ }), | ||
/* 13 */ | ||
/* 15 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -534,3 +619,3 @@ | ||
var _isObject = __webpack_require__(38); | ||
var _isObject = __webpack_require__(44); | ||
@@ -544,4 +629,4 @@ var _require = __webpack_require__(0), | ||
var isNull = __webpack_require__(5); | ||
var isObjectLike = __webpack_require__(7); | ||
var isNull = __webpack_require__(7); | ||
var isObjectLike = __webpack_require__(8); | ||
var isFunction = __webpack_require__(1); | ||
@@ -595,3 +680,3 @@ | ||
/***/ }), | ||
/* 14 */ | ||
/* 16 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -602,3 +687,3 @@ | ||
var _isString = __webpack_require__(39); | ||
var _isString = __webpack_require__(45); | ||
@@ -625,3 +710,3 @@ /** | ||
/***/ }), | ||
/* 15 */ | ||
/* 17 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -657,3 +742,3 @@ | ||
/***/ }), | ||
/* 16 */ | ||
/* 18 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -671,3 +756,3 @@ | ||
/***/ }), | ||
/* 17 */ | ||
/* 19 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -708,3 +793,3 @@ | ||
/***/ }), | ||
/* 18 */ | ||
/* 20 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -718,3 +803,3 @@ | ||
var isArray = __webpack_require__(8); | ||
var isArray = __webpack_require__(9); | ||
@@ -742,3 +827,3 @@ /** | ||
/***/ }), | ||
/* 19 */ | ||
/* 21 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -776,3 +861,3 @@ | ||
/***/ }), | ||
/* 20 */ | ||
/* 22 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -786,3 +871,3 @@ | ||
var isAsyncFunction = __webpack_require__(3); | ||
var isAsyncFunction = __webpack_require__(4); | ||
@@ -813,3 +898,3 @@ /* eslint-disable max-len */ | ||
/***/ }), | ||
/* 21 */ | ||
/* 23 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -823,3 +908,3 @@ | ||
var isBoolean = __webpack_require__(9); | ||
var isBoolean = __webpack_require__(10); | ||
@@ -847,3 +932,3 @@ /** | ||
/***/ }), | ||
/* 22 */ | ||
/* 24 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -857,3 +942,3 @@ | ||
var isDate = __webpack_require__(10); | ||
var isDate = __webpack_require__(11); | ||
@@ -880,3 +965,3 @@ /** | ||
/***/ }), | ||
/* 23 */ | ||
/* 25 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -916,3 +1001,3 @@ | ||
/***/ }), | ||
/* 24 */ | ||
/* 26 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -926,2 +1011,41 @@ | ||
var _isFinite = __webpack_require__(5); | ||
/** | ||
* Checks whether the passed value is complement of finite `Number`. | ||
* | ||
* | ||
* @func isNotFinite | ||
* @memberOf RA | ||
* @since {@link https://char0n.github.io/ramda-adjunct/0.7.0|v0.7.0} | ||
* @category Type | ||
* @sig * -> Boolean | ||
* @param {*} val The value to test | ||
* @return {Boolean} | ||
* @see {@link RA.isFinite|isFinite} | ||
* @example | ||
* | ||
* RA.isNotFinite(Infinity); //=> true | ||
* RA.isNotFinite(NaN); //=> true | ||
* RA.isNotFinite(-Infinity); //=> true | ||
* | ||
* RA.isNotFinite(0); // false | ||
* RA.isNotFinite(2e64); // false | ||
* | ||
* RA.isNotFinite('0'); // => true | ||
* RA.isNotFinite(null); // => true | ||
*/ | ||
module.exports = complement(_isFinite); | ||
/***/ }), | ||
/* 27 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
complement = _require.complement; | ||
var isFunction = __webpack_require__(1); | ||
@@ -955,3 +1079,3 @@ | ||
/***/ }), | ||
/* 25 */ | ||
/* 28 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -965,3 +1089,3 @@ | ||
var isGeneratorFunction = __webpack_require__(4); | ||
var isGeneratorFunction = __webpack_require__(6); | ||
@@ -992,3 +1116,3 @@ /* eslint-disable max-len */ | ||
/***/ }), | ||
/* 26 */ | ||
/* 29 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -1002,5 +1126,49 @@ | ||
var isNaN = __webpack_require__(11); | ||
var isInteger = __webpack_require__(12); | ||
/** | ||
* Checks whether the passed value is complement of an `integer`. | ||
* | ||
* | ||
* @func isNotInteger | ||
* @memberOf RA | ||
* @since {@link https://char0n.github.io/ramda-adjunct/0.7.0|v0.7.0} | ||
* @category Type | ||
* @sig * -> Boolean | ||
* @param {*} val The value to test | ||
* @return {Boolean} | ||
* @see {@link RA.isInteger|isInteger} | ||
* @example | ||
* | ||
* RA.isNotInteger(0); //=> false | ||
* RA.isNotInteger(1); //=> false | ||
* RA.isNotInteger(-100000); //=> false | ||
* | ||
* RA.isNotInteger(0.1); //=> true | ||
* RA.isNotInteger(Math.PI); //=> true | ||
* | ||
* RA.isNotInteger(NaN); //=> true | ||
* RA.isNotInteger(Infinity); //=> true | ||
* RA.isNotInteger(-Infinity); //=> true | ||
* RA.isNotInteger('10'); //=> true | ||
* RA.isNotInteger(true); //=> true | ||
* RA.isNotInteger(false); //=> true | ||
* RA.isNotInteger([1]); //=> true | ||
*/ | ||
module.exports = complement(isInteger); | ||
/***/ }), | ||
/* 30 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
complement = _require.complement; | ||
var isNaN = __webpack_require__(13); | ||
/** | ||
* Checks whether the passed value is complement of `NaN` and its type is not `Number`. | ||
@@ -1039,3 +1207,3 @@ * | ||
/***/ }), | ||
/* 27 */ | ||
/* 31 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -1073,3 +1241,3 @@ | ||
/***/ }), | ||
/* 28 */ | ||
/* 32 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -1083,3 +1251,3 @@ | ||
var isNumber = __webpack_require__(6); | ||
var isNumber = __webpack_require__(3); | ||
@@ -1108,3 +1276,3 @@ /** | ||
/***/ }), | ||
/* 29 */ | ||
/* 33 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -1118,3 +1286,3 @@ | ||
var isObject = __webpack_require__(12); | ||
var isObject = __webpack_require__(14); | ||
@@ -1146,3 +1314,3 @@ /* eslint-disable max-len */ | ||
/***/ }), | ||
/* 30 */ | ||
/* 34 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -1156,3 +1324,3 @@ | ||
var isObjectLike = __webpack_require__(7); | ||
var isObjectLike = __webpack_require__(8); | ||
@@ -1184,3 +1352,3 @@ /* eslint-disable max-len */ | ||
/***/ }), | ||
/* 31 */ | ||
/* 35 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -1194,3 +1362,3 @@ | ||
var isPlainObject = __webpack_require__(13); | ||
var isPlainObject = __webpack_require__(15); | ||
@@ -1228,3 +1396,3 @@ /* eslint-disable max-len */ | ||
/***/ }), | ||
/* 32 */ | ||
/* 36 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -1238,3 +1406,3 @@ | ||
var iString = __webpack_require__(14); | ||
var iString = __webpack_require__(16); | ||
@@ -1261,3 +1429,3 @@ /** | ||
/***/ }), | ||
/* 33 */ | ||
/* 37 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -1271,3 +1439,3 @@ | ||
var isUndefined = __webpack_require__(15); | ||
var isUndefined = __webpack_require__(17); | ||
@@ -1294,3 +1462,3 @@ /** | ||
/***/ }), | ||
/* 34 */ | ||
/* 38 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -1304,8 +1472,39 @@ | ||
var isNumber = __webpack_require__(6); | ||
var isNumber = __webpack_require__(3); | ||
module.exports = both(isNumber, isFinite); | ||
/***/ }), | ||
/* 39 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
both = _require.both, | ||
converge = _require.converge, | ||
equals = _require.equals, | ||
identity = _require.identity; | ||
var isFinite = __webpack_require__(5); | ||
module.exports = both(isFinite, converge(equals, [Math.floor, identity])); | ||
/***/ }), | ||
/* 40 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
both = _require.both; | ||
var isNumber = __webpack_require__(3); | ||
module.exports = both(isNumber, isNaN); | ||
/***/ }), | ||
/* 35 */ | ||
/* 41 */ | ||
/***/ (function(module, exports) { | ||
@@ -1333,3 +1532,3 @@ | ||
/***/ }), | ||
/* 36 */ | ||
/* 42 */ | ||
/***/ (function(module, exports) { | ||
@@ -1343,3 +1542,3 @@ | ||
/***/ }), | ||
/* 37 */ | ||
/* 43 */ | ||
/***/ (function(module, exports) { | ||
@@ -1353,3 +1552,3 @@ | ||
/***/ }), | ||
/* 38 */ | ||
/* 44 */ | ||
/***/ (function(module, exports) { | ||
@@ -1363,3 +1562,3 @@ | ||
/***/ }), | ||
/* 39 */ | ||
/* 45 */ | ||
/***/ (function(module, exports) { | ||
@@ -1373,3 +1572,3 @@ | ||
/***/ }), | ||
/* 40 */ | ||
/* 46 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -1380,34 +1579,38 @@ | ||
var isNotUndefined = __webpack_require__(33); | ||
var isUndefined = __webpack_require__(15); | ||
var isNull = __webpack_require__(5); | ||
var isNotUndefined = __webpack_require__(37); | ||
var isUndefined = __webpack_require__(17); | ||
var isNull = __webpack_require__(7); | ||
var isNotNull = __webpack_require__(2); | ||
var isNotNil = __webpack_require__(27); | ||
var isArray = __webpack_require__(8); | ||
var isNotArray = __webpack_require__(18); | ||
var isBoolean = __webpack_require__(9); | ||
var isNotBoolean = __webpack_require__(21); | ||
var isNotEmpty = __webpack_require__(23); | ||
var isNilOrEmpty = __webpack_require__(17); | ||
var isString = __webpack_require__(14); | ||
var isNotString = __webpack_require__(32); | ||
var isNotArrayLike = __webpack_require__(19); | ||
var isGeneratorFunction = __webpack_require__(4); | ||
var isNotGeneratorFunction = __webpack_require__(25); | ||
var isAsyncFunction = __webpack_require__(3); | ||
var isNotAsyncFunction = __webpack_require__(20); | ||
var isNotNil = __webpack_require__(31); | ||
var isArray = __webpack_require__(9); | ||
var isNotArray = __webpack_require__(20); | ||
var isBoolean = __webpack_require__(10); | ||
var isNotBoolean = __webpack_require__(23); | ||
var isNotEmpty = __webpack_require__(25); | ||
var isNilOrEmpty = __webpack_require__(19); | ||
var isString = __webpack_require__(16); | ||
var isNotString = __webpack_require__(36); | ||
var isNotArrayLike = __webpack_require__(21); | ||
var isGeneratorFunction = __webpack_require__(6); | ||
var isNotGeneratorFunction = __webpack_require__(28); | ||
var isAsyncFunction = __webpack_require__(4); | ||
var isNotAsyncFunction = __webpack_require__(22); | ||
var isFunction = __webpack_require__(1); | ||
var isNotFunction = __webpack_require__(24); | ||
var isObject = __webpack_require__(12); | ||
var isNotObject = __webpack_require__(29); | ||
var isObjectLike = __webpack_require__(7); | ||
var isNotObjectLike = __webpack_require__(30); | ||
var isPlainObject = __webpack_require__(13); | ||
var isNotPlainObject = __webpack_require__(31); | ||
var isDate = __webpack_require__(10); | ||
var isNotDate = __webpack_require__(22); | ||
var isNumber = __webpack_require__(6); | ||
var isNotNumber = __webpack_require__(28); | ||
var isNaN = __webpack_require__(11); | ||
var isNotNaN = __webpack_require__(26); | ||
var isNotFunction = __webpack_require__(27); | ||
var isObject = __webpack_require__(14); | ||
var isNotObject = __webpack_require__(33); | ||
var isObjectLike = __webpack_require__(8); | ||
var isNotObjectLike = __webpack_require__(34); | ||
var isPlainObject = __webpack_require__(15); | ||
var isNotPlainObject = __webpack_require__(35); | ||
var isDate = __webpack_require__(11); | ||
var isNotDate = __webpack_require__(24); | ||
var isNumber = __webpack_require__(3); | ||
var isNotNumber = __webpack_require__(32); | ||
var isNaN = __webpack_require__(13); | ||
var isNotNaN = __webpack_require__(30); | ||
var isFinite = __webpack_require__(5); | ||
var isNotFinite = __webpack_require__(26); | ||
var isInteger = __webpack_require__(12); | ||
var isNotInteger = __webpack_require__(29); | ||
@@ -1449,3 +1652,7 @@ /** | ||
isNaN: isNaN, | ||
isNotNaN: isNotNaN | ||
isNotNaN: isNotNaN, | ||
isFinite: isFinite, | ||
isNotFinite: isNotFinite, | ||
isInteger: isInteger, | ||
isNotInteger: isNotInteger | ||
}; | ||
@@ -1452,0 +1659,0 @@ |
@@ -1,1 +0,1 @@ | ||
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("ramda")):"function"==typeof define&&define.amd?define(["ramda"],e):"object"==typeof exports?exports.RA=e(require("ramda")):t.RA=e(t.ramda)}(this,function(t){return function(t){function e(n){if(o[n])return o[n].exports;var r=o[n]={i:n,l:!1,exports:{}};return t[n].call(r.exports,r,r.exports,e),r.l=!0,r.exports}var o={};return e.m=t,e.c=o,e.i=function(t){return t},e.d=function(t,o,n){e.o(t,o)||Object.defineProperty(t,o,{configurable:!1,enumerable:!0,get:n})},e.n=function(t){var o=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(o,"a",o),o},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=40)}([function(e,o){e.exports=t},function(t,e,o){"use strict";var n=o(0),r=n.anyPass,i=o(36),s=o(4),c=o(3);t.exports=r([i,s,c])},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(5);t.exports=r(i)},function(t,e,o){"use strict";t.exports=function(t){return"[object AsyncFunction]"===Object.prototype.toString.call(t)}},function(t,e,o){"use strict";var n=o(0),r=n.or,i=o(2),s=null;try{s=new Function("return function* () {}")().constructor}catch(t){}t.exports=function(t){var e="[object AsyncFunction]"===Object.prototype.toString.call(t),o=i(s)&&t instanceof s;return r(e,o)}},function(t,e,o){"use strict";var n=o(0),r=n.equals;t.exports=r(null)},function(t,e,o){"use strict";var n=o(37);t.exports=n},function(t,e,o){"use strict";var n=o(0),r=n.both,i=o(2),s=o(16);t.exports=r(i,s)},function(t,e,o){"use strict";var n=o(35);t.exports=n},function(t,e,o){"use strict";var n=o(0),r=n.is;t.exports=r(Boolean)},function(t,e,o){"use strict";var n=o(0),r=n.is;t.exports=r(Date)},function(t,e,o){"use strict";var n=o(0),r=n.or,i=o(34);t.exports=r(Number.isNaN,i)},function(t,e,o){"use strict";var n=o(0),r=n.both,i=n.anyPass,s=o(2),c=o(1),u=o(16);t.exports=r(s,i([u,c]))},function(t,e,o){"use strict";var n=o(38),r=o(0),i=r.pipe,s=r.both,c=r.equals,u=r.toString,p=r.pathSatisfies,a=o(5),f=o(7),l=o(1),m=i(u,c(u(Object))),x=p(s(l,m),["constructor"]);t.exports=function(t){if(!f(t)||!n(t))return!1;var e=Object.getPrototypeOf(t);return!!a(e)||x(e)}},function(t,e,o){"use strict";var n=o(39);t.exports=n},function(t,e,o){"use strict";var n=o(0),r=n.equals;t.exports=r(void 0)},function(t,e,o){"use strict";var n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};t.exports=function(t){return"object"===("undefined"==typeof t?"undefined":n(t))}},function(t,e,o){"use strict";var n=o(0),r=n.anyPass,i=n.isEmpty,s=n.isNil;t.exports=r([s,i])},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(8);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=n.isArrayLike;t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(3);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(9);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(10);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=n.isEmpty;t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(1);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(4);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(11);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.isNil,i=n.complement;t.exports=i(r)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(6);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(12);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(7);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(13);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(14);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(15);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.both,i=o(6);t.exports=r(i,isNaN)},function(t,e){t.exports=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object Function]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object Number]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object Object]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object String]"===Object.prototype.toString.call(t)}},function(t,e,o){"use strict";var n=o(33),r=o(15),i=o(5),s=o(2),c=o(27),u=o(8),p=o(18),a=o(9),f=o(21),l=o(23),m=o(17),x=o(14),y=o(32),b=o(19),v=o(4),N=o(25),j=o(3),d=o(20),O=o(1),S=o(24),g=o(12),A=o(29),F=o(7),h=o(30),P=o(13),q=o(31),k=o(10),E=o(22),L=o(6),B=o(28),D=o(11),w=o(26);t.exports={isNotUndefined:n,isUndefined:r,isNull:i,isNotNull:s,isNotNil:c,isArray:u,isNotArray:p,isBoolean:a,isNotBoolean:f,isNotEmpty:l,isNilOrEmpty:m,isString:x,isNotString:y,isNotArrayLike:b,isGeneratorFunction:v,isNotGeneratorFunction:N,isAsyncFunction:j,isNotAsyncFunction:d,isFunction:O,isNotFunction:S,isObject:g,isNotObject:A,isObjectLike:F,isNotObjectLike:h,isPlainObject:P,isNotPlainObject:q,isDate:k,isNotDate:E,isNumber:L,isNotNumber:B,isNaN:D,isNotNaN:w}}])}); | ||
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("ramda")):"function"==typeof define&&define.amd?define(["ramda"],e):"object"==typeof exports?exports.RA=e(require("ramda")):t.RA=e(t.ramda)}(this,function(t){return function(t){function e(n){if(o[n])return o[n].exports;var r=o[n]={i:n,l:!1,exports:{}};return t[n].call(r.exports,r,r.exports,e),r.l=!0,r.exports}var o={};return e.m=t,e.c=o,e.i=function(t){return t},e.d=function(t,o,n){e.o(t,o)||Object.defineProperty(t,o,{configurable:!1,enumerable:!0,get:n})},e.n=function(t){var o=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(o,"a",o),o},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=46)}([function(e,o){e.exports=t},function(t,e,o){"use strict";var n=o(0),r=n.anyPass,i=o(42),s=o(6),c=o(4);t.exports=r([i,s,c])},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(7);t.exports=r(i)},function(t,e,o){"use strict";var n=o(43);t.exports=n},function(t,e,o){"use strict";t.exports=function(t){return"[object AsyncFunction]"===Object.prototype.toString.call(t)}},function(t,e,o){"use strict";var n=o(0),r=n.or,i=o(38);t.exports=r(Number.isFinite,i)},function(t,e,o){"use strict";var n=o(0),r=n.or,i=o(2),s=null;try{s=new Function("return function* () {}")().constructor}catch(t){}t.exports=function(t){var e="[object AsyncFunction]"===Object.prototype.toString.call(t),o=i(s)&&t instanceof s;return r(e,o)}},function(t,e,o){"use strict";var n=o(0),r=n.equals;t.exports=r(null)},function(t,e,o){"use strict";var n=o(0),r=n.both,i=o(2),s=o(18);t.exports=r(i,s)},function(t,e,o){"use strict";var n=o(41);t.exports=n},function(t,e,o){"use strict";var n=o(0),r=n.is;t.exports=r(Boolean)},function(t,e,o){"use strict";var n=o(0),r=n.is;t.exports=r(Date)},function(t,e,o){"use strict";var n=o(0),r=n.or,i=o(39);t.exports=r(Number.isInteger,i)},function(t,e,o){"use strict";var n=o(0),r=n.or,i=o(40);t.exports=r(Number.isNaN,i)},function(t,e,o){"use strict";var n=o(0),r=n.both,i=n.anyPass,s=o(2),c=o(1),u=o(18);t.exports=r(s,i([u,c]))},function(t,e,o){"use strict";var n=o(44),r=o(0),i=r.pipe,s=r.both,c=r.equals,u=r.toString,p=r.pathSatisfies,a=o(7),f=o(8),l=o(1),m=i(u,c(u(Object))),x=p(s(l,m),["constructor"]);t.exports=function(t){if(!f(t)||!n(t))return!1;var e=Object.getPrototypeOf(t);return!!a(e)||x(e)}},function(t,e,o){"use strict";var n=o(45);t.exports=n},function(t,e,o){"use strict";var n=o(0),r=n.equals;t.exports=r(void 0)},function(t,e,o){"use strict";var n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};t.exports=function(t){return"object"===("undefined"==typeof t?"undefined":n(t))}},function(t,e,o){"use strict";var n=o(0),r=n.anyPass,i=n.isEmpty,s=n.isNil;t.exports=r([s,i])},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(9);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=n.isArrayLike;t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(4);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(10);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(11);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=n.isEmpty;t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(5);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(1);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(6);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(12);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(13);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.isNil,i=n.complement;t.exports=i(r)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(3);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(14);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(8);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(15);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(16);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(17);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.both,i=o(3);t.exports=r(i,isFinite)},function(t,e,o){"use strict";var n=o(0),r=n.both,i=n.converge,s=n.equals,c=n.identity,u=o(5);t.exports=r(u,i(s,[Math.floor,c]))},function(t,e,o){"use strict";var n=o(0),r=n.both,i=o(3);t.exports=r(i,isNaN)},function(t,e){t.exports=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object Function]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object Number]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object Object]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object String]"===Object.prototype.toString.call(t)}},function(t,e,o){"use strict";var n=o(37),r=o(17),i=o(7),s=o(2),c=o(31),u=o(9),p=o(20),a=o(10),f=o(23),l=o(25),m=o(19),x=o(16),b=o(36),y=o(21),v=o(6),N=o(28),j=o(4),d=o(22),O=o(1),g=o(27),S=o(14),F=o(33),A=o(8),h=o(34),P=o(15),q=o(35),k=o(11),E=o(24),L=o(3),B=o(32),D=o(13),I=o(30),w=o(5),G=o(26),M=o(12),R=o(29);t.exports={isNotUndefined:n,isUndefined:r,isNull:i,isNotNull:s,isNotNil:c,isArray:u,isNotArray:p,isBoolean:a,isNotBoolean:f,isNotEmpty:l,isNilOrEmpty:m,isString:x,isNotString:b,isNotArrayLike:y,isGeneratorFunction:v,isNotGeneratorFunction:N,isAsyncFunction:j,isNotAsyncFunction:d,isFunction:O,isNotFunction:g,isObject:S,isNotObject:F,isObjectLike:A,isNotObjectLike:h,isPlainObject:P,isNotPlainObject:q,isDate:k,isNotDate:E,isNumber:L,isNotNumber:B,isNaN:D,isNotNaN:I,isFinite:w,isNotFinite:G,isInteger:M,isNotInteger:R}}])}); |
@@ -76,3 +76,3 @@ (function webpackUniversalModuleDefinition(root, factory) { | ||
/******/ // Load entry module and return exports | ||
/******/ return __webpack_require__(__webpack_require__.s = 40); | ||
/******/ return __webpack_require__(__webpack_require__.s = 46); | ||
/******/ }) | ||
@@ -96,6 +96,6 @@ /************************************************************************/ | ||
var _isFunction = __webpack_require__(36); | ||
var _isFunction = __webpack_require__(42); | ||
var isGeneratorFunction = __webpack_require__(4); | ||
var isAsyncFunction = __webpack_require__(3); | ||
var isGeneratorFunction = __webpack_require__(6); | ||
var isAsyncFunction = __webpack_require__(4); | ||
@@ -137,3 +137,3 @@ /* eslint-disable max-len */ | ||
var isNull = __webpack_require__(5); | ||
var isNull = __webpack_require__(7); | ||
@@ -167,2 +167,32 @@ /** | ||
var _isNumber = __webpack_require__(43); | ||
/** | ||
* Checks if value is a `Number` primitive or object | ||
* | ||
* @func isNumber | ||
* @memberOf RA | ||
* @since {@link https://char0n.github.io/ramda-adjunct/0.6.0|v0.6.0} | ||
* @category Type | ||
* @sig * -> Boolean | ||
* @param {*} val The value to test | ||
* @return {Boolean} | ||
* @see {@link RA.isNotNumber|isNotNumber} | ||
* @example | ||
* | ||
* RA.isNumber(5); // => true | ||
* RA.isNumber(Number.MAX_VALUE); // => true | ||
* RA.isNumber(-Infinity); // => true | ||
* RA.isNumber('5'); // => false | ||
*/ | ||
module.exports = _isNumber; | ||
/***/ }), | ||
/* 4 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
/* eslint-disable max-len */ | ||
@@ -194,3 +224,3 @@ /** | ||
/***/ }), | ||
/* 4 */ | ||
/* 5 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -204,2 +234,43 @@ | ||
var polyfill = __webpack_require__(38); | ||
/** | ||
* Checks whether the passed value is a finite `Number`. | ||
* | ||
* | ||
* @func isFinite | ||
* @memberOf RA | ||
* @since {@link https://char0n.github.io/ramda-adjunct/0.7.0|v0.7.0} | ||
* @category Type | ||
* @sig * -> Boolean | ||
* @param {*} val The value to test | ||
* @return {Boolean} | ||
* @see {@link RA.isNotFinite|isNotFinite} | ||
* @example | ||
* | ||
* RA.isFinite(Infinity); //=> false | ||
* RA.isFinite(NaN); //=> false | ||
* RA.isFinite(-Infinity); //=> false | ||
* | ||
* RA.isFinite(0); // true | ||
* RA.isFinite(2e64); // true | ||
* | ||
* RA.isFinite('0'); // => false | ||
* // would've been true with global isFinite('0') | ||
* RA.isFinite(null); // => false | ||
* // would've been true with global isFinite(null) | ||
*/ | ||
module.exports = or(Number.isFinite, polyfill); | ||
/***/ }), | ||
/* 6 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
or = _require.or; | ||
var isNotNull = __webpack_require__(2); | ||
@@ -242,3 +313,3 @@ | ||
/***/ }), | ||
/* 5 */ | ||
/* 7 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -274,3 +345,3 @@ | ||
/***/ }), | ||
/* 6 */ | ||
/* 8 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -281,32 +352,2 @@ | ||
var _isNumber = __webpack_require__(37); | ||
/** | ||
* Checks if value is a `Number` primitive or object | ||
* | ||
* @func isNumber | ||
* @memberOf RA | ||
* @since {@link https://char0n.github.io/ramda-adjunct/0.6.0|v0.6.0} | ||
* @category Type | ||
* @sig * -> Boolean | ||
* @param {*} val The value to test | ||
* @return {Boolean} | ||
* @see {@link RA.isNotNumber|isNotNumber} | ||
* @example | ||
* | ||
* RA.isNumber(5); // => true | ||
* RA.isNumber(Number.MAX_VALUE); // => true | ||
* RA.isNumber(-Infinity); // => true | ||
* RA.isNumber('5'); // => false | ||
*/ | ||
module.exports = _isNumber; | ||
/***/ }), | ||
/* 7 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
@@ -316,3 +357,3 @@ both = _require.both; | ||
var isNotNull = __webpack_require__(2); | ||
var isOfTypeObject = __webpack_require__(16); | ||
var isOfTypeObject = __webpack_require__(18); | ||
@@ -344,3 +385,3 @@ /* eslint-disable max-len */ | ||
/***/ }), | ||
/* 8 */ | ||
/* 9 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -351,3 +392,3 @@ | ||
var _isArray = __webpack_require__(35); | ||
var _isArray = __webpack_require__(41); | ||
@@ -375,3 +416,3 @@ /** | ||
/***/ }), | ||
/* 9 */ | ||
/* 10 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -406,3 +447,3 @@ | ||
/***/ }), | ||
/* 10 */ | ||
/* 11 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -436,3 +477,3 @@ | ||
/***/ }), | ||
/* 11 */ | ||
/* 12 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -446,5 +487,49 @@ | ||
var polyfill = __webpack_require__(34); | ||
var polyfill = __webpack_require__(39); | ||
/** | ||
* Checks whether the passed value is a an `integer`. | ||
* | ||
* | ||
* @func isInteger | ||
* @memberOf RA | ||
* @since {@link https://char0n.github.io/ramda-adjunct/0.7.0|v0.7.0} | ||
* @category Type | ||
* @sig * -> Boolean | ||
* @param {*} val The value to test | ||
* @return {Boolean} | ||
* @see {@link RA.isNotInteger|isNotInteger} | ||
* @example | ||
* | ||
* RA.isInteger(0); //=> true | ||
* RA.isInteger(1); //=> true | ||
* RA.isInteger(-100000); //=> true | ||
* | ||
* RA.isInteger(0.1); //=> false | ||
* RA.isInteger(Math.PI); //=> false | ||
* | ||
* RA.isInteger(NaN); //=> false | ||
* RA.isInteger(Infinity); //=> false | ||
* RA.isInteger(-Infinity); //=> false | ||
* RA.isInteger('10'); //=> false | ||
* RA.isInteger(true); //=> false | ||
* RA.isInteger(false); //=> false | ||
* RA.isInteger([1]); //=> false | ||
*/ | ||
module.exports = or(Number.isInteger, polyfill); | ||
/***/ }), | ||
/* 13 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
or = _require.or; | ||
var polyfill = __webpack_require__(40); | ||
/** | ||
* Checks whether the passed value is `NaN` and its type is `Number`. | ||
@@ -486,3 +571,3 @@ * It is a more robust version of the original, global isNaN(). | ||
/***/ }), | ||
/* 12 */ | ||
/* 14 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -499,3 +584,3 @@ | ||
var isFunction = __webpack_require__(1); | ||
var isOfTypeObject = __webpack_require__(16); | ||
var isOfTypeObject = __webpack_require__(18); | ||
@@ -527,3 +612,3 @@ /* eslint-disable max-len */ | ||
/***/ }), | ||
/* 13 */ | ||
/* 15 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -534,3 +619,3 @@ | ||
var _isObject = __webpack_require__(38); | ||
var _isObject = __webpack_require__(44); | ||
@@ -544,4 +629,4 @@ var _require = __webpack_require__(0), | ||
var isNull = __webpack_require__(5); | ||
var isObjectLike = __webpack_require__(7); | ||
var isNull = __webpack_require__(7); | ||
var isObjectLike = __webpack_require__(8); | ||
var isFunction = __webpack_require__(1); | ||
@@ -595,3 +680,3 @@ | ||
/***/ }), | ||
/* 14 */ | ||
/* 16 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -602,3 +687,3 @@ | ||
var _isString = __webpack_require__(39); | ||
var _isString = __webpack_require__(45); | ||
@@ -625,3 +710,3 @@ /** | ||
/***/ }), | ||
/* 15 */ | ||
/* 17 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -657,3 +742,3 @@ | ||
/***/ }), | ||
/* 16 */ | ||
/* 18 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -671,3 +756,3 @@ | ||
/***/ }), | ||
/* 17 */ | ||
/* 19 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -708,3 +793,3 @@ | ||
/***/ }), | ||
/* 18 */ | ||
/* 20 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -718,3 +803,3 @@ | ||
var isArray = __webpack_require__(8); | ||
var isArray = __webpack_require__(9); | ||
@@ -742,3 +827,3 @@ /** | ||
/***/ }), | ||
/* 19 */ | ||
/* 21 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -776,3 +861,3 @@ | ||
/***/ }), | ||
/* 20 */ | ||
/* 22 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -786,3 +871,3 @@ | ||
var isAsyncFunction = __webpack_require__(3); | ||
var isAsyncFunction = __webpack_require__(4); | ||
@@ -813,3 +898,3 @@ /* eslint-disable max-len */ | ||
/***/ }), | ||
/* 21 */ | ||
/* 23 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -823,3 +908,3 @@ | ||
var isBoolean = __webpack_require__(9); | ||
var isBoolean = __webpack_require__(10); | ||
@@ -847,3 +932,3 @@ /** | ||
/***/ }), | ||
/* 22 */ | ||
/* 24 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -857,3 +942,3 @@ | ||
var isDate = __webpack_require__(10); | ||
var isDate = __webpack_require__(11); | ||
@@ -880,3 +965,3 @@ /** | ||
/***/ }), | ||
/* 23 */ | ||
/* 25 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -916,3 +1001,3 @@ | ||
/***/ }), | ||
/* 24 */ | ||
/* 26 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -926,2 +1011,41 @@ | ||
var _isFinite = __webpack_require__(5); | ||
/** | ||
* Checks whether the passed value is complement of finite `Number`. | ||
* | ||
* | ||
* @func isNotFinite | ||
* @memberOf RA | ||
* @since {@link https://char0n.github.io/ramda-adjunct/0.7.0|v0.7.0} | ||
* @category Type | ||
* @sig * -> Boolean | ||
* @param {*} val The value to test | ||
* @return {Boolean} | ||
* @see {@link RA.isFinite|isFinite} | ||
* @example | ||
* | ||
* RA.isNotFinite(Infinity); //=> true | ||
* RA.isNotFinite(NaN); //=> true | ||
* RA.isNotFinite(-Infinity); //=> true | ||
* | ||
* RA.isNotFinite(0); // false | ||
* RA.isNotFinite(2e64); // false | ||
* | ||
* RA.isNotFinite('0'); // => true | ||
* RA.isNotFinite(null); // => true | ||
*/ | ||
module.exports = complement(_isFinite); | ||
/***/ }), | ||
/* 27 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
complement = _require.complement; | ||
var isFunction = __webpack_require__(1); | ||
@@ -955,3 +1079,3 @@ | ||
/***/ }), | ||
/* 25 */ | ||
/* 28 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -965,3 +1089,3 @@ | ||
var isGeneratorFunction = __webpack_require__(4); | ||
var isGeneratorFunction = __webpack_require__(6); | ||
@@ -992,3 +1116,3 @@ /* eslint-disable max-len */ | ||
/***/ }), | ||
/* 26 */ | ||
/* 29 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -1002,5 +1126,49 @@ | ||
var isNaN = __webpack_require__(11); | ||
var isInteger = __webpack_require__(12); | ||
/** | ||
* Checks whether the passed value is complement of an `integer`. | ||
* | ||
* | ||
* @func isNotInteger | ||
* @memberOf RA | ||
* @since {@link https://char0n.github.io/ramda-adjunct/0.7.0|v0.7.0} | ||
* @category Type | ||
* @sig * -> Boolean | ||
* @param {*} val The value to test | ||
* @return {Boolean} | ||
* @see {@link RA.isInteger|isInteger} | ||
* @example | ||
* | ||
* RA.isNotInteger(0); //=> false | ||
* RA.isNotInteger(1); //=> false | ||
* RA.isNotInteger(-100000); //=> false | ||
* | ||
* RA.isNotInteger(0.1); //=> true | ||
* RA.isNotInteger(Math.PI); //=> true | ||
* | ||
* RA.isNotInteger(NaN); //=> true | ||
* RA.isNotInteger(Infinity); //=> true | ||
* RA.isNotInteger(-Infinity); //=> true | ||
* RA.isNotInteger('10'); //=> true | ||
* RA.isNotInteger(true); //=> true | ||
* RA.isNotInteger(false); //=> true | ||
* RA.isNotInteger([1]); //=> true | ||
*/ | ||
module.exports = complement(isInteger); | ||
/***/ }), | ||
/* 30 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
complement = _require.complement; | ||
var isNaN = __webpack_require__(13); | ||
/** | ||
* Checks whether the passed value is complement of `NaN` and its type is not `Number`. | ||
@@ -1039,3 +1207,3 @@ * | ||
/***/ }), | ||
/* 27 */ | ||
/* 31 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -1073,3 +1241,3 @@ | ||
/***/ }), | ||
/* 28 */ | ||
/* 32 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -1083,3 +1251,3 @@ | ||
var isNumber = __webpack_require__(6); | ||
var isNumber = __webpack_require__(3); | ||
@@ -1108,3 +1276,3 @@ /** | ||
/***/ }), | ||
/* 29 */ | ||
/* 33 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -1118,3 +1286,3 @@ | ||
var isObject = __webpack_require__(12); | ||
var isObject = __webpack_require__(14); | ||
@@ -1146,3 +1314,3 @@ /* eslint-disable max-len */ | ||
/***/ }), | ||
/* 30 */ | ||
/* 34 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -1156,3 +1324,3 @@ | ||
var isObjectLike = __webpack_require__(7); | ||
var isObjectLike = __webpack_require__(8); | ||
@@ -1184,3 +1352,3 @@ /* eslint-disable max-len */ | ||
/***/ }), | ||
/* 31 */ | ||
/* 35 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -1194,3 +1362,3 @@ | ||
var isPlainObject = __webpack_require__(13); | ||
var isPlainObject = __webpack_require__(15); | ||
@@ -1228,3 +1396,3 @@ /* eslint-disable max-len */ | ||
/***/ }), | ||
/* 32 */ | ||
/* 36 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -1238,3 +1406,3 @@ | ||
var iString = __webpack_require__(14); | ||
var iString = __webpack_require__(16); | ||
@@ -1261,3 +1429,3 @@ /** | ||
/***/ }), | ||
/* 33 */ | ||
/* 37 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -1271,3 +1439,3 @@ | ||
var isUndefined = __webpack_require__(15); | ||
var isUndefined = __webpack_require__(17); | ||
@@ -1294,3 +1462,3 @@ /** | ||
/***/ }), | ||
/* 34 */ | ||
/* 38 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -1304,8 +1472,39 @@ | ||
var isNumber = __webpack_require__(6); | ||
var isNumber = __webpack_require__(3); | ||
module.exports = both(isNumber, isFinite); | ||
/***/ }), | ||
/* 39 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
both = _require.both, | ||
converge = _require.converge, | ||
equals = _require.equals, | ||
identity = _require.identity; | ||
var isFinite = __webpack_require__(5); | ||
module.exports = both(isFinite, converge(equals, [Math.floor, identity])); | ||
/***/ }), | ||
/* 40 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var _require = __webpack_require__(0), | ||
both = _require.both; | ||
var isNumber = __webpack_require__(3); | ||
module.exports = both(isNumber, isNaN); | ||
/***/ }), | ||
/* 35 */ | ||
/* 41 */ | ||
/***/ (function(module, exports) { | ||
@@ -1333,3 +1532,3 @@ | ||
/***/ }), | ||
/* 36 */ | ||
/* 42 */ | ||
/***/ (function(module, exports) { | ||
@@ -1343,3 +1542,3 @@ | ||
/***/ }), | ||
/* 37 */ | ||
/* 43 */ | ||
/***/ (function(module, exports) { | ||
@@ -1353,3 +1552,3 @@ | ||
/***/ }), | ||
/* 38 */ | ||
/* 44 */ | ||
/***/ (function(module, exports) { | ||
@@ -1363,3 +1562,3 @@ | ||
/***/ }), | ||
/* 39 */ | ||
/* 45 */ | ||
/***/ (function(module, exports) { | ||
@@ -1373,3 +1572,3 @@ | ||
/***/ }), | ||
/* 40 */ | ||
/* 46 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -1380,34 +1579,38 @@ | ||
var isNotUndefined = __webpack_require__(33); | ||
var isUndefined = __webpack_require__(15); | ||
var isNull = __webpack_require__(5); | ||
var isNotUndefined = __webpack_require__(37); | ||
var isUndefined = __webpack_require__(17); | ||
var isNull = __webpack_require__(7); | ||
var isNotNull = __webpack_require__(2); | ||
var isNotNil = __webpack_require__(27); | ||
var isArray = __webpack_require__(8); | ||
var isNotArray = __webpack_require__(18); | ||
var isBoolean = __webpack_require__(9); | ||
var isNotBoolean = __webpack_require__(21); | ||
var isNotEmpty = __webpack_require__(23); | ||
var isNilOrEmpty = __webpack_require__(17); | ||
var isString = __webpack_require__(14); | ||
var isNotString = __webpack_require__(32); | ||
var isNotArrayLike = __webpack_require__(19); | ||
var isGeneratorFunction = __webpack_require__(4); | ||
var isNotGeneratorFunction = __webpack_require__(25); | ||
var isAsyncFunction = __webpack_require__(3); | ||
var isNotAsyncFunction = __webpack_require__(20); | ||
var isNotNil = __webpack_require__(31); | ||
var isArray = __webpack_require__(9); | ||
var isNotArray = __webpack_require__(20); | ||
var isBoolean = __webpack_require__(10); | ||
var isNotBoolean = __webpack_require__(23); | ||
var isNotEmpty = __webpack_require__(25); | ||
var isNilOrEmpty = __webpack_require__(19); | ||
var isString = __webpack_require__(16); | ||
var isNotString = __webpack_require__(36); | ||
var isNotArrayLike = __webpack_require__(21); | ||
var isGeneratorFunction = __webpack_require__(6); | ||
var isNotGeneratorFunction = __webpack_require__(28); | ||
var isAsyncFunction = __webpack_require__(4); | ||
var isNotAsyncFunction = __webpack_require__(22); | ||
var isFunction = __webpack_require__(1); | ||
var isNotFunction = __webpack_require__(24); | ||
var isObject = __webpack_require__(12); | ||
var isNotObject = __webpack_require__(29); | ||
var isObjectLike = __webpack_require__(7); | ||
var isNotObjectLike = __webpack_require__(30); | ||
var isPlainObject = __webpack_require__(13); | ||
var isNotPlainObject = __webpack_require__(31); | ||
var isDate = __webpack_require__(10); | ||
var isNotDate = __webpack_require__(22); | ||
var isNumber = __webpack_require__(6); | ||
var isNotNumber = __webpack_require__(28); | ||
var isNaN = __webpack_require__(11); | ||
var isNotNaN = __webpack_require__(26); | ||
var isNotFunction = __webpack_require__(27); | ||
var isObject = __webpack_require__(14); | ||
var isNotObject = __webpack_require__(33); | ||
var isObjectLike = __webpack_require__(8); | ||
var isNotObjectLike = __webpack_require__(34); | ||
var isPlainObject = __webpack_require__(15); | ||
var isNotPlainObject = __webpack_require__(35); | ||
var isDate = __webpack_require__(11); | ||
var isNotDate = __webpack_require__(24); | ||
var isNumber = __webpack_require__(3); | ||
var isNotNumber = __webpack_require__(32); | ||
var isNaN = __webpack_require__(13); | ||
var isNotNaN = __webpack_require__(30); | ||
var isFinite = __webpack_require__(5); | ||
var isNotFinite = __webpack_require__(26); | ||
var isInteger = __webpack_require__(12); | ||
var isNotInteger = __webpack_require__(29); | ||
@@ -1449,3 +1652,7 @@ /** | ||
isNaN: isNaN, | ||
isNotNaN: isNotNaN | ||
isNotNaN: isNotNaN, | ||
isFinite: isFinite, | ||
isNotFinite: isNotFinite, | ||
isInteger: isInteger, | ||
isNotInteger: isNotInteger | ||
}; | ||
@@ -1452,0 +1659,0 @@ |
@@ -1,1 +0,1 @@ | ||
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("R")):"function"==typeof define&&define.amd?define(["R"],e):"object"==typeof exports?exports.RA=e(require("R")):t.RA=e(t.R)}(this,function(t){return function(t){function e(n){if(o[n])return o[n].exports;var r=o[n]={i:n,l:!1,exports:{}};return t[n].call(r.exports,r,r.exports,e),r.l=!0,r.exports}var o={};return e.m=t,e.c=o,e.i=function(t){return t},e.d=function(t,o,n){e.o(t,o)||Object.defineProperty(t,o,{configurable:!1,enumerable:!0,get:n})},e.n=function(t){var o=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(o,"a",o),o},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=40)}([function(e,o){e.exports=t},function(t,e,o){"use strict";var n=o(0),r=n.anyPass,i=o(36),s=o(4),c=o(3);t.exports=r([i,s,c])},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(5);t.exports=r(i)},function(t,e,o){"use strict";t.exports=function(t){return"[object AsyncFunction]"===Object.prototype.toString.call(t)}},function(t,e,o){"use strict";var n=o(0),r=n.or,i=o(2),s=null;try{s=new Function("return function* () {}")().constructor}catch(t){}t.exports=function(t){var e="[object AsyncFunction]"===Object.prototype.toString.call(t),o=i(s)&&t instanceof s;return r(e,o)}},function(t,e,o){"use strict";var n=o(0),r=n.equals;t.exports=r(null)},function(t,e,o){"use strict";var n=o(37);t.exports=n},function(t,e,o){"use strict";var n=o(0),r=n.both,i=o(2),s=o(16);t.exports=r(i,s)},function(t,e,o){"use strict";var n=o(35);t.exports=n},function(t,e,o){"use strict";var n=o(0),r=n.is;t.exports=r(Boolean)},function(t,e,o){"use strict";var n=o(0),r=n.is;t.exports=r(Date)},function(t,e,o){"use strict";var n=o(0),r=n.or,i=o(34);t.exports=r(Number.isNaN,i)},function(t,e,o){"use strict";var n=o(0),r=n.both,i=n.anyPass,s=o(2),c=o(1),u=o(16);t.exports=r(s,i([u,c]))},function(t,e,o){"use strict";var n=o(38),r=o(0),i=r.pipe,s=r.both,c=r.equals,u=r.toString,p=r.pathSatisfies,f=o(5),a=o(7),l=o(1),m=i(u,c(u(Object))),x=p(s(l,m),["constructor"]);t.exports=function(t){if(!a(t)||!n(t))return!1;var e=Object.getPrototypeOf(t);return!!f(e)||x(e)}},function(t,e,o){"use strict";var n=o(39);t.exports=n},function(t,e,o){"use strict";var n=o(0),r=n.equals;t.exports=r(void 0)},function(t,e,o){"use strict";var n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};t.exports=function(t){return"object"===("undefined"==typeof t?"undefined":n(t))}},function(t,e,o){"use strict";var n=o(0),r=n.anyPass,i=n.isEmpty,s=n.isNil;t.exports=r([s,i])},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(8);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=n.isArrayLike;t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(3);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(9);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(10);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=n.isEmpty;t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(1);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(4);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(11);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.isNil,i=n.complement;t.exports=i(r)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(6);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(12);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(7);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(13);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(14);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(15);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.both,i=o(6);t.exports=r(i,isNaN)},function(t,e){t.exports=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object Function]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object Number]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object Object]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object String]"===Object.prototype.toString.call(t)}},function(t,e,o){"use strict";var n=o(33),r=o(15),i=o(5),s=o(2),c=o(27),u=o(8),p=o(18),f=o(9),a=o(21),l=o(23),m=o(17),x=o(14),y=o(32),b=o(19),v=o(4),N=o(25),j=o(3),O=o(20),d=o(1),S=o(24),g=o(12),A=o(29),F=o(7),h=o(30),P=o(13),R=o(31),q=o(10),k=o(22),E=o(6),L=o(28),B=o(11),D=o(26);t.exports={isNotUndefined:n,isUndefined:r,isNull:i,isNotNull:s,isNotNil:c,isArray:u,isNotArray:p,isBoolean:f,isNotBoolean:a,isNotEmpty:l,isNilOrEmpty:m,isString:x,isNotString:y,isNotArrayLike:b,isGeneratorFunction:v,isNotGeneratorFunction:N,isAsyncFunction:j,isNotAsyncFunction:O,isFunction:d,isNotFunction:S,isObject:g,isNotObject:A,isObjectLike:F,isNotObjectLike:h,isPlainObject:P,isNotPlainObject:R,isDate:q,isNotDate:k,isNumber:E,isNotNumber:L,isNaN:B,isNotNaN:D}}])}); | ||
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("R")):"function"==typeof define&&define.amd?define(["R"],e):"object"==typeof exports?exports.RA=e(require("R")):t.RA=e(t.R)}(this,function(t){return function(t){function e(n){if(o[n])return o[n].exports;var r=o[n]={i:n,l:!1,exports:{}};return t[n].call(r.exports,r,r.exports,e),r.l=!0,r.exports}var o={};return e.m=t,e.c=o,e.i=function(t){return t},e.d=function(t,o,n){e.o(t,o)||Object.defineProperty(t,o,{configurable:!1,enumerable:!0,get:n})},e.n=function(t){var o=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(o,"a",o),o},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=46)}([function(e,o){e.exports=t},function(t,e,o){"use strict";var n=o(0),r=n.anyPass,i=o(42),s=o(6),c=o(4);t.exports=r([i,s,c])},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(7);t.exports=r(i)},function(t,e,o){"use strict";var n=o(43);t.exports=n},function(t,e,o){"use strict";t.exports=function(t){return"[object AsyncFunction]"===Object.prototype.toString.call(t)}},function(t,e,o){"use strict";var n=o(0),r=n.or,i=o(38);t.exports=r(Number.isFinite,i)},function(t,e,o){"use strict";var n=o(0),r=n.or,i=o(2),s=null;try{s=new Function("return function* () {}")().constructor}catch(t){}t.exports=function(t){var e="[object AsyncFunction]"===Object.prototype.toString.call(t),o=i(s)&&t instanceof s;return r(e,o)}},function(t,e,o){"use strict";var n=o(0),r=n.equals;t.exports=r(null)},function(t,e,o){"use strict";var n=o(0),r=n.both,i=o(2),s=o(18);t.exports=r(i,s)},function(t,e,o){"use strict";var n=o(41);t.exports=n},function(t,e,o){"use strict";var n=o(0),r=n.is;t.exports=r(Boolean)},function(t,e,o){"use strict";var n=o(0),r=n.is;t.exports=r(Date)},function(t,e,o){"use strict";var n=o(0),r=n.or,i=o(39);t.exports=r(Number.isInteger,i)},function(t,e,o){"use strict";var n=o(0),r=n.or,i=o(40);t.exports=r(Number.isNaN,i)},function(t,e,o){"use strict";var n=o(0),r=n.both,i=n.anyPass,s=o(2),c=o(1),u=o(18);t.exports=r(s,i([u,c]))},function(t,e,o){"use strict";var n=o(44),r=o(0),i=r.pipe,s=r.both,c=r.equals,u=r.toString,p=r.pathSatisfies,f=o(7),a=o(8),l=o(1),m=i(u,c(u(Object))),x=p(s(l,m),["constructor"]);t.exports=function(t){if(!a(t)||!n(t))return!1;var e=Object.getPrototypeOf(t);return!!f(e)||x(e)}},function(t,e,o){"use strict";var n=o(45);t.exports=n},function(t,e,o){"use strict";var n=o(0),r=n.equals;t.exports=r(void 0)},function(t,e,o){"use strict";var n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};t.exports=function(t){return"object"===("undefined"==typeof t?"undefined":n(t))}},function(t,e,o){"use strict";var n=o(0),r=n.anyPass,i=n.isEmpty,s=n.isNil;t.exports=r([s,i])},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(9);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=n.isArrayLike;t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(4);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(10);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(11);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=n.isEmpty;t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(5);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(1);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(6);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(12);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(13);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.isNil,i=n.complement;t.exports=i(r)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(3);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(14);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(8);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(15);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(16);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.complement,i=o(17);t.exports=r(i)},function(t,e,o){"use strict";var n=o(0),r=n.both,i=o(3);t.exports=r(i,isFinite)},function(t,e,o){"use strict";var n=o(0),r=n.both,i=n.converge,s=n.equals,c=n.identity,u=o(5);t.exports=r(u,i(s,[Math.floor,c]))},function(t,e,o){"use strict";var n=o(0),r=n.both,i=o(3);t.exports=r(i,isNaN)},function(t,e){t.exports=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object Function]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object Number]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object Object]"===Object.prototype.toString.call(t)}},function(t,e){t.exports=function(t){return"[object String]"===Object.prototype.toString.call(t)}},function(t,e,o){"use strict";var n=o(37),r=o(17),i=o(7),s=o(2),c=o(31),u=o(9),p=o(20),f=o(10),a=o(23),l=o(25),m=o(19),x=o(16),b=o(36),y=o(21),v=o(6),N=o(28),j=o(4),d=o(22),O=o(1),g=o(27),S=o(14),F=o(33),A=o(8),h=o(34),P=o(15),q=o(35),R=o(11),k=o(24),E=o(3),L=o(32),B=o(13),D=o(30),I=o(5),w=o(26),G=o(12),M=o(29);t.exports={isNotUndefined:n,isUndefined:r,isNull:i,isNotNull:s,isNotNil:c,isArray:u,isNotArray:p,isBoolean:f,isNotBoolean:a,isNotEmpty:l,isNilOrEmpty:m,isString:x,isNotString:b,isNotArrayLike:y,isGeneratorFunction:v,isNotGeneratorFunction:N,isAsyncFunction:j,isNotAsyncFunction:d,isFunction:O,isNotFunction:g,isObject:S,isNotObject:F,isObjectLike:A,isNotObjectLike:h,isPlainObject:P,isNotPlainObject:q,isDate:R,isNotDate:k,isNumber:E,isNotNumber:L,isNaN:B,isNotNaN:D,isFinite:I,isNotFinite:w,isInteger:G,isNotInteger:M}}])}); |
@@ -1,2 +0,2 @@ | ||
!function(t,n){"object"==typeof exports&&"object"==typeof module?module.exports=n():"function"==typeof define&&define.amd?define([],n):"object"==typeof exports?exports.RA=n():t.RA=n()}(this,function(){return function(t){function n(e){if(r[e])return r[e].exports;var o=r[e]={i:e,l:!1,exports:{}};return t[e].call(o.exports,o,o.exports,n),o.l=!0,o.exports}var r={};return n.m=t,n.c=r,n.i=function(t){return t},n.d=function(t,r,e){n.o(t,r)||Object.defineProperty(t,r,{configurable:!1,enumerable:!0,get:e})},n.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(r,"a",r),r},n.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},n.p="",n(n.s=343)}([function(t,n,r){var e=r(1),o=r(37);t.exports=function(t){return function n(r,u){switch(arguments.length){case 0:return n;case 1:return o(r)?n:e(function(n){return t(r,n)});default:return o(r)&&o(u)?n:o(r)?e(function(n){return t(n,u)}):o(u)?e(function(n){return t(r,n)}):t(r,u)}}}},function(t,n,r){var e=r(37);t.exports=function(t){return function n(r){return 0===arguments.length||e(r)?n:t.apply(this,arguments)}}},function(t,n,r){var e=r(1),o=r(0),u=r(37);t.exports=function(t){return function n(r,i,c){switch(arguments.length){case 0:return n;case 1:return u(r)?n:o(function(n,e){return t(r,n,e)});case 2:return u(r)&&u(i)?n:u(r)?o(function(n,r){return t(n,i,r)}):u(i)?o(function(n,e){return t(r,n,e)}):e(function(n){return t(r,i,n)});default:return u(r)&&u(i)&&u(c)?n:u(r)&&u(i)?o(function(n,r){return t(n,r,c)}):u(r)&&u(c)?o(function(n,r){return t(n,i,r)}):u(i)&&u(c)?o(function(n,e){return t(r,n,e)}):u(r)?e(function(n){return t(n,i,c)}):u(i)?e(function(n){return t(r,n,c)}):u(c)?e(function(n){return t(r,i,n)}):t(r,i,c)}}}},function(t,n,r){t.exports={F:r(149),T:r(150),__:r(151),add:r(32),addIndex:r(152),adjust:r(76),all:r(153),allPass:r(154),always:r(19),and:r(77),any:r(78),anyPass:r(155),ap:r(50),aperture:r(156),append:r(157),apply:r(79),applySpec:r(158),ascend:r(159),assoc:r(33),assocPath:r(80),binary:r(160),bind:r(81),both:r(161),call:r(162),chain:r(51),clamp:r(163),clone:r(164),comparator:r(165),complement:r(166),compose:r(52),composeK:r(82),composeP:r(167),concat:r(53),cond:r(168),construct:r(169),constructN:r(83),contains:r(170),converge:r(84),countBy:r(171),curry:r(34),curryN:r(6),dec:r(172),descend:r(173),defaultTo:r(85),difference:r(86),differenceWith:r(87),dissoc:r(88),dissocPath:r(174),divide:r(175),drop:r(89),dropLast:r(176),dropLastWhile:r(177),dropRepeats:r(178),dropRepeatsWith:r(90),dropWhile:r(179),either:r(180),empty:r(91),eqBy:r(181),eqProps:r(182),equals:r(11),evolve:r(183),filter:r(54),find:r(184),findIndex:r(185),findLast:r(186),findLastIndex:r(187),flatten:r(188),flip:r(35),forEach:r(189),forEachObjIndexed:r(190),fromPairs:r(191),groupBy:r(192),groupWith:r(193),gt:r(194),gte:r(195),has:r(196),hasIn:r(197),head:r(198),identical:r(92),identity:r(55),ifElse:r(199),inc:r(200),indexBy:r(201),indexOf:r(202),init:r(203),insert:r(204),insertAll:r(205),intersection:r(240),intersectionWith:r(241),intersperse:r(242),into:r(243),invert:r(244),invertObj:r(245),invoker:r(24),is:r(105),isArrayLike:r(25),isEmpty:r(246),isNil:r(247),join:r(248),juxt:r(106),keys:r(13),keysIn:r(249),last:r(107),lastIndexOf:r(250),length:r(108),lens:r(39),lensIndex:r(251),lensPath:r(252),lensProp:r(253),lift:r(40),liftN:r(109),lt:r(254),lte:r(255),map:r(8),mapAccum:r(256),mapAccumRight:r(257),mapObjIndexed:r(258),match:r(259),mathMod:r(260),max:r(20),maxBy:r(261),mean:r(110),median:r(262),memoize:r(263),merge:r(264),mergeAll:r(265),mergeWith:r(266),mergeWithKey:r(111),min:r(267),minBy:r(268),modulo:r(269),multiply:r(112),nAry:r(41),negate:r(270),none:r(271),not:r(113),nth:r(26),nthArg:r(272),objOf:r(114),of:r(273),omit:r(274),once:r(275),or:r(115),over:r(116),pair:r(276),partial:r(277),partialRight:r(278),partition:r(279),path:r(27),pathEq:r(280),pathOr:r(281),pathSatisfies:r(282),pick:r(283),pickAll:r(117),pickBy:r(284),pipe:r(118),pipeK:r(285),pipeP:r(119),pluck:r(28),prepend:r(120),product:r(286),project:r(287),prop:r(62),propEq:r(288),propIs:r(289),propOr:r(290),propSatisfies:r(291),props:r(292),range:r(293),reduce:r(14),reduceBy:r(42),reduceRight:r(121),reduceWhile:r(294),reduced:r(295),reject:r(43),remove:r(296),repeat:r(297),replace:r(298),reverse:r(44),scan:r(299),sequence:r(122),set:r(300),slice:r(18),sort:r(301),sortBy:r(302),sortWith:r(303),split:r(304),splitAt:r(305),splitEvery:r(306),splitWhen:r(307),subtract:r(308),sum:r(123),symmetricDifference:r(309),symmetricDifferenceWith:r(310),tail:r(63),take:r(124),takeLast:r(311),takeLastWhile:r(312),takeWhile:r(313),tap:r(314),test:r(315),times:r(125),toLower:r(316),toPairs:r(317),toPairsIn:r(318),toString:r(29),toUpper:r(319),transduce:r(320),transpose:r(321),traverse:r(322),trim:r(323),tryCatch:r(324),type:r(64),unapply:r(325),unary:r(326),uncurryN:r(327),unfold:r(328),union:r(329),unionWith:r(330),uniq:r(65),uniqBy:r(126),uniqWith:r(66),unless:r(331),unnest:r(332),until:r(333),update:r(127),useWith:r(128),values:r(129),valuesIn:r(334),view:r(335),when:r(336),where:r(130),whereEq:r(337),without:r(338),xprod:r(339),zip:r(340),zipObj:r(341),zipWith:r(342)}},function(t,n,r){var e=r(15),o=r(61);t.exports=function(t,n,r){return function(){if(0===arguments.length)return r();var u=Array.prototype.slice.call(arguments,0),i=u.pop();if(!e(i)){for(var c=0;c<t.length;){if("function"==typeof i[t[c]])return i[t[c]].apply(i,u);c+=1}if(o(i)){var s=n.apply(null,u);return s(i)}}return r.apply(this,arguments)}}},function(t,n){t.exports={init:function(){return this.xf["@@transducer/init"]()},result:function(t){return this.xf["@@transducer/result"](t)}}},function(t,n,r){var e=r(12),o=r(1),u=r(0),i=r(36);t.exports=u(function(t,n){return 1===t?o(n):e(t,i(t,[],n))})},function(t,n){t.exports=function(t,n){return Object.prototype.hasOwnProperty.call(n,t)}},function(t,n,r){var e=r(0),o=r(4),u=r(38),i=r(9),c=r(236),s=r(6),f=r(13);t.exports=e(o(["map"],c,function(t,n){switch(Object.prototype.toString.call(n)){case"[object Function]":return s(n.length,function(){return t.call(this,n.apply(this,arguments))});case"[object Object]":return i(function(r,e){return r[e]=t(n[e]),r},{},f(n));default:return u(t,n)}}))},function(t,n,r){var e=r(104),o=r(81),u=r(25);t.exports=function(){function t(t,n,r){for(var e=0,o=r.length;e<o;){if(n=t["@@transducer/step"](n,r[e]),n&&n["@@transducer/reduced"]){n=n["@@transducer/value"];break}e+=1}return t["@@transducer/result"](n)}function n(t,n,r){for(var e=r.next();!e.done;){if(n=t["@@transducer/step"](n,e.value),n&&n["@@transducer/reduced"]){n=n["@@transducer/value"];break}e=r.next()}return t["@@transducer/result"](n)}function r(t,n,r){return t["@@transducer/result"](r.reduce(o(t["@@transducer/step"],t),n))}var i="undefined"!=typeof Symbol?Symbol.iterator:"@@iterator";return function(o,c,s){if("function"==typeof o&&(o=e(o)),u(s))return t(o,c,s);if("function"==typeof s.reduce)return r(o,c,s);if(null!=s[i])return n(o,c,s[i]());if("function"==typeof s.next)return n(o,c,s);throw new TypeError("reduce: list must be array or iterable")}}()},function(t,n){t.exports=function(t,n){t=t||[],n=n||[];var r,e=t.length,o=n.length,u=[];for(r=0;r<e;)u[u.length]=t[r],r+=1;for(r=0;r<o;)u[u.length]=n[r],r+=1;return u}},function(t,n,r){var e=r(0),o=r(211);t.exports=e(function(t,n){return o(t,n,[],[])})},function(t,n){t.exports=function(t,n){switch(t){case 0:return function(){return n.apply(this,arguments)};case 1:return function(t){return n.apply(this,arguments)};case 2:return function(t,r){return n.apply(this,arguments)};case 3:return function(t,r,e){return n.apply(this,arguments)};case 4:return function(t,r,e,o){return n.apply(this,arguments)};case 5:return function(t,r,e,o,u){return n.apply(this,arguments)};case 6:return function(t,r,e,o,u,i){return n.apply(this,arguments)};case 7:return function(t,r,e,o,u,i,c){return n.apply(this,arguments)};case 8:return function(t,r,e,o,u,i,c,s){return n.apply(this,arguments)};case 9:return function(t,r,e,o,u,i,c,s,f){return n.apply(this,arguments)};case 10:return function(t,r,e,o,u,i,c,s,f,a){return n.apply(this,arguments)};default:throw new Error("First argument to _arity must be a non-negative integer no greater than ten")}}},function(t,n,r){var e=r(1),o=r(7),u=r(99);t.exports=function(){var t=!{toString:null}.propertyIsEnumerable("toString"),n=["constructor","valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],r=function(){"use strict";return arguments.propertyIsEnumerable("length")}(),i=function(t,n){for(var r=0;r<t.length;){if(t[r]===n)return!0;r+=1}return!1};return e("function"!=typeof Object.keys||r?function(e){if(Object(e)!==e)return[];var c,s,f=[],a=r&&u(e);for(c in e)!o(c,e)||a&&"length"===c||(f[f.length]=c);if(t)for(s=n.length-1;s>=0;)c=n[s],o(c,e)&&!i(f,c)&&(f[f.length]=c),s-=1;return f}:function(t){return Object(t)!==t?[]:Object.keys(t)})}()},function(t,n,r){var e=r(2),o=r(9);t.exports=e(o)},function(t,n){t.exports=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return t&&t["@@transducer/reduced"]?t:{"@@transducer/value":t,"@@transducer/reduced":!0}}},function(t,n,r){var e=r(98);t.exports=function(t,n){return e(n,t,0)>=0}},function(t,n,r){var e=r(21),o=r(2);t.exports=o(e("slice",function(t,n,r){return Array.prototype.slice.call(r,t,n)}))},function(t,n,r){var e=r(1);t.exports=e(function(t){return function(){return t}})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n>t?n:t})},function(t,n,r){var e=r(15);t.exports=function(t,n){return function(){var r=arguments.length;if(0===r)return n();var o=arguments[r-1];return e(o)||"function"!=typeof o[t]?n.apply(this,arguments):o[t].apply(o,Array.prototype.slice.call(arguments,0,r-1))}}},function(t,n){t.exports=function(t){return"[object Function]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return"[object String]"===Object.prototype.toString.call(t)}},function(t,n,r){var e=r(0),o=r(22),u=r(6),i=r(29);t.exports=e(function(t,n){return u(t+1,function(){var r=arguments[t];if(null!=r&&o(r[n]))return r[n].apply(r,Array.prototype.slice.call(arguments,0,t));throw new TypeError(i(r)+' does not have a method named "'+n+'"')})})},function(t,n,r){var e=r(1),o=r(15),u=r(23);t.exports=e(function(t){return!!o(t)||!!t&&("object"==typeof t&&(!u(t)&&(1===t.nodeType?!!t.length:0===t.length||t.length>0&&(t.hasOwnProperty(0)&&t.hasOwnProperty(t.length-1)))))})},function(t,n,r){var e=r(0),o=r(23);t.exports=e(function(t,n){var r=t<0?n.length+t:t;return o(n)?n.charAt(r):n[r]})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=n,e=0;e<t.length;){if(null==r)return;r=r[t[e]],e+=1}return r})},function(t,n,r){var e=r(0),o=r(8),u=r(62);t.exports=e(function(t,n){return o(u(t),n)})},function(t,n,r){var e=r(1),o=r(223);t.exports=e(function(t){return o(t,[])})},function(t,n,r){"use strict";var e=r(3),o=e.anyPass,u=r(22),i=r(46),c=r(45);t.exports=o([u,i,c])},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(47);t.exports=o(u)},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Number(t)+Number(n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){var e={};for(var o in r)e[o]=r[o];return e[t]=n,e})},function(t,n,r){var e=r(1),o=r(6);t.exports=e(function(t){return o(t.length,t)})},function(t,n,r){var e=r(1),o=r(34);t.exports=e(function(t){return o(function(n,r){var e=Array.prototype.slice.call(arguments,0);return e[0]=r,e[1]=n,t.apply(this,e)})})},function(t,n,r){var e=r(12),o=r(37);t.exports=function t(n,r,u){return function(){for(var i=[],c=0,s=n,f=0;f<r.length||c<arguments.length;){var a;f<r.length&&(!o(r[f])||c>=arguments.length)?a=r[f]:(a=arguments[c],c+=1),i[f]=a,o(a)||(s-=1),f+=1}return s<=0?u.apply(this,i):e(s,t(n,i,u))}}},function(t,n){t.exports=function(t){return null!=t&&"object"==typeof t&&t["@@functional/placeholder"]===!0}},function(t,n){t.exports=function(t,n){for(var r=0,e=n.length,o=Array(e);r<e;)o[r]=t(n[r]),r+=1;return o}},function(t,n,r){var e=r(0),o=r(8);t.exports=e(function(t,n){return function(r){return function(e){return o(function(t){return n(t,e)},r(t(e)))}}})},function(t,n,r){var e=r(1),o=r(109);t.exports=e(function(t){return o(t.length,t)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){switch(t){case 0:return function(){return n.call(this)};case 1:return function(t){return n.call(this,t)};case 2:return function(t,r){return n.call(this,t,r)};case 3:return function(t,r,e){return n.call(this,t,r,e)};case 4:return function(t,r,e,o){return n.call(this,t,r,e,o)};case 5:return function(t,r,e,o,u){return n.call(this,t,r,e,o,u)};case 6:return function(t,r,e,o,u,i){return n.call(this,t,r,e,o,u,i)};case 7:return function(t,r,e,o,u,i,c){return n.call(this,t,r,e,o,u,i,c)};case 8:return function(t,r,e,o,u,i,c,s){return n.call(this,t,r,e,o,u,i,c,s)};case 9:return function(t,r,e,o,u,i,c,s,f){return n.call(this,t,r,e,o,u,i,c,s,f)};case 10:return function(t,r,e,o,u,i,c,s,f,a){return n.call(this,t,r,e,o,u,i,c,s,f,a)};default:throw new Error("First argument to nAry must be a non-negative integer no greater than ten")}})},function(t,n,r){var e=r(36),o=r(4),u=r(7),i=r(9),c=r(237);t.exports=e(4,[],o([],c,function(t,n,r,e){return i(function(e,o){var i=r(o);return e[i]=t(u(i,e)?e[i]:n,o),e},{},e)}))},function(t,n,r){var e=r(95),o=r(0),u=r(54);t.exports=o(function(t,n){return u(e(t),n)})},function(t,n,r){var e=r(1),o=r(23);t.exports=e(function(t){return o(t)?t.split("").reverse().join(""):Array.prototype.slice.call(t,0).reverse()})},function(t,n,r){"use strict";t.exports=function(t){return"[object AsyncFunction]"===Object.prototype.toString.call(t)}},function(t,n,r){"use strict";var e=r(3),o=e.or,u=r(31),i=null;try{i=new Function("return function* () {}")().constructor}catch(t){}t.exports=function(t){var n="[object AsyncFunction]"===Object.prototype.toString.call(t),r=u(i)&&t instanceof i;return o(n,r)}},function(t,n,r){"use strict";var e=r(3),o=e.equals;t.exports=o(null)},function(t,n,r){"use strict";var e=r(59);t.exports=e},function(t,n,r){"use strict";var e=r(3),o=e.both,u=r(31),i=r(75);t.exports=o(u,i)},function(t,n,r){var e=r(10),o=r(0),u=r(9),i=r(8);t.exports=o(function(t,n){return"function"==typeof t.ap?t.ap(n):"function"==typeof t?function(r){return t(r)(n(r))}:u(function(t,r){return e(t,i(r,n))},[],t)})},function(t,n,r){var e=r(0),o=r(4),u=r(101),i=r(226),c=r(8);t.exports=e(o(["chain"],i,function(t,n){return"function"==typeof n?function(r){return t(n(r))(r)}:u(!1)(c(t,n))}))},function(t,n,r){var e=r(118),o=r(44);t.exports=function(){if(0===arguments.length)throw new Error("compose requires at least one argument");return e.apply(this,o(arguments))}},function(t,n,r){var e=r(0),o=r(15),u=r(22),i=r(29);t.exports=e(function(t,n){if(null==t||!u(t.concat))throw new TypeError(i(t)+' does not have a method named "concat"');if(o(t)&&!o(n))throw new TypeError(i(n)+" is not an array");return t.concat(n)})},function(t,n,r){var e=r(0),o=r(4),u=r(97),i=r(60),c=r(9),s=r(231),f=r(13);t.exports=e(o(["filter"],s,function(t,n){return i(n)?c(function(r,e){return t(n[e])&&(r[e]=n[e]),r},{},f(n)):u(t,n)}))},function(t,n,r){var e=r(1),o=r(58);t.exports=e(o)},function(t,n,r){var e=r(216);t.exports="function"==typeof Object.assign?Object.assign:e},function(t,n){t.exports=function(t,n,r){for(var e=0,o=r.length;e<o;){if(t(n,r[e]))return!0;e+=1}return!1}},function(t,n){t.exports=function(t){return t}},function(t,n){t.exports=function(t){return"[object Number]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return"[object Object]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return"function"==typeof t["@@transducer/step"]}},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n[t]})},function(t,n,r){var e=r(21),o=r(1),u=r(18);t.exports=o(e("tail",u(1,1/0)))},function(t,n,r){var e=r(1);t.exports=e(function(t){return null===t?"Null":void 0===t?"Undefined":Object.prototype.toString.call(t).slice(8,-1)})},function(t,n,r){var e=r(55),o=r(126);t.exports=o(e)},function(t,n,r){var e=r(57),o=r(0);t.exports=o(function(t,n){for(var r,o=0,u=n.length,i=[];o<u;)r=n[o],e(t,r,i)||(i[i.length]=r),o+=1;return i})},function(t,n,r){"use strict";var e=r(15);t.exports=e},function(t,n,r){"use strict";var e=r(3),o=e.is;t.exports=o(Boolean)},function(t,n,r){"use strict";var e=r(3),o=e.is;t.exports=o(Date)},function(t,n,r){"use strict";var e=r(3),o=e.or,u=r(148);t.exports=o(Number.isNaN,u)},function(t,n,r){"use strict";var e=r(3),o=e.both,u=e.anyPass,i=r(31),c=r(30),s=r(75);t.exports=o(i,u([s,c]))},function(t,n,r){"use strict";var e=r(60),o=r(3),u=o.pipe,i=o.both,c=o.equals,s=o.toString,f=o.pathSatisfies,a=r(47),p=r(49),l=r(30),h=u(s,c(s(Object))),v=f(i(l,h),["constructor"]);t.exports=function(t){if(!p(t)||!e(t))return!1;var n=Object.getPrototypeOf(t);return!!a(n)||v(n)}},function(t,n,r){"use strict";var e=r(23);t.exports=e},function(t,n,r){"use strict";var e=r(3),o=e.equals;t.exports=o(void 0)},function(t,n,r){"use strict";var e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};t.exports=function(t){return"object"===("undefined"==typeof t?"undefined":e(t))}},function(t,n,r){var e=r(10),o=r(2);t.exports=o(function(t,n,r){if(n>=r.length||n<-r.length)return r;var o=n<0?r.length:0,u=o+n,i=e(r);return i[u]=t(r[u]),i})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t&&n})},function(t,n,r){var e=r(0),o=r(4),u=r(102);t.exports=e(o(["any"],u,function(t,n){for(var r=0;r<n.length;){if(t(n[r]))return!0;r+=1}return!1}))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t.apply(this,n)})},function(t,n,r){var e=r(2),o=r(7),u=r(15),i=r(100),c=r(33);t.exports=e(function t(n,r,e){if(0===n.length)return r;var s=n[0];if(n.length>1){var f=o(s,e)?e[s]:i(n[1])?[]:{};r=t(Array.prototype.slice.call(n,1),r,f)}if(i(s)&&u(e)){var a=[].concat(e);return a[s]=r,a}return c(s,r,e)})},function(t,n,r){var e=r(12),o=r(0);t.exports=o(function(t,n){return e(t.length,function(){return t.apply(n,arguments)})})},function(t,n,r){var e=r(51),o=r(52),u=r(8);t.exports=function(){if(0===arguments.length)throw new Error("composeK requires at least one argument");var t=Array.prototype.slice.call(arguments),n=t.pop();return o(o.apply(this,u(e,t)),n)}},function(t,n,r){var e=r(0),o=r(34),u=r(41);t.exports=e(function(t,n){if(t>10)throw new Error("Constructor with greater than ten arguments");return 0===t?function(){return new n}:o(u(t,function(t,r,e,o,u,i,c,s,f,a){switch(arguments.length){case 1:return new n(t);case 2:return new n(t,r);case 3:return new n(t,r,e);case 4:return new n(t,r,e,o);case 5:return new n(t,r,e,o,u);case 6:return new n(t,r,e,o,u,i);case 7:return new n(t,r,e,o,u,i,c);case 8:return new n(t,r,e,o,u,i,c,s);case 9:return new n(t,r,e,o,u,i,c,s,f);case 10:return new n(t,r,e,o,u,i,c,s,f,a)}}))})},function(t,n,r){var e=r(0),o=r(38),u=r(6),i=r(20),c=r(28),s=r(14);t.exports=e(function(t,n){return u(s(i,0,c("length",n)),function(){var r=arguments,e=this;return t.apply(e,o(function(t){return t.apply(e,r)},n))})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return null==n||n!==n?t:n})},function(t,n,r){var e=r(17),o=r(0);t.exports=o(function(t,n){for(var r=[],o=0,u=t.length;o<u;)e(t[o],n)||e(t[o],r)||(r[r.length]=t[o]),o+=1;return r})},function(t,n,r){var e=r(57),o=r(2);t.exports=o(function(t,n,r){for(var o=[],u=0,i=n.length;u<i;)e(t,n[u],r)||e(t,n[u],o)||o.push(n[u]),u+=1;return o})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r={};for(var e in n)r[e]=n[e];return delete r[t],r})},function(t,n,r){var e=r(0),o=r(4),u=r(227),i=r(18);t.exports=e(o(["drop"],u,function(t,n){return i(Math.max(0,t),1/0,n)}))},function(t,n,r){var e=r(0),o=r(4),u=r(103),i=r(107);t.exports=e(o([],u,function(t,n){var r=[],e=1,o=n.length;if(0!==o)for(r[0]=n[0];e<o;)t(i(r),n[e])||(r[r.length]=n[e]),e+=1;return r}))},function(t,n,r){var e=r(1),o=r(99),u=r(15),i=r(60),c=r(23);t.exports=e(function(t){return null!=t&&"function"==typeof t.empty?t.empty():null!=t&&null!=t.constructor&&"function"==typeof t.constructor.empty?t.constructor.empty():u(t)?[]:c(t)?"":i(t)?{}:o(t)?function(){return arguments}():void 0})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t===n?0!==t||1/t===1/n:t!==t&&n!==n})},function(t,n,r){var e=r(94),o=r(64);t.exports=function t(n,r,u,i){var c=function(e){for(var o=r.length,c=0;c<o;){if(n===r[c])return u[c];c+=1}r[c+1]=n,u[c+1]=e;for(var s in n)e[s]=i?t(n[s],r,u,!0):n[s];return e};switch(o(n)){case"Object":return c({});case"Array":return c([]);case"Date":return new Date(n.valueOf());case"RegExp":return e(n);default:return n}}},function(t,n){t.exports=function(t){return new RegExp(t.source,(t.global?"g":"")+(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.sticky?"y":"")+(t.unicode?"u":""))}},function(t,n){t.exports=function(t){return function(){return!t.apply(this,arguments)}}},function(t,n,r){var e=r(12),o=r(0);t.exports=function(t){return o(function(n,r){return e(Math.max(0,n.length-r.length),function(){return n.apply(this,t(r,arguments))})})}},function(t,n){t.exports=function(t,n){for(var r=0,e=n.length,o=[];r<e;)t(n[r])&&(o[o.length]=n[r]),r+=1;return o}},function(t,n,r){var e=r(11);t.exports=function(t,n,r){var o,u;if("function"==typeof t.indexOf)switch(typeof n){case"number":if(0===n){for(o=1/n;r<t.length;){if(u=t[r],0===u&&1/u===o)return r;r+=1}return-1}if(n!==n){for(;r<t.length;){if(u=t[r],"number"==typeof u&&u!==u)return r;r+=1}return-1}return t.indexOf(n,r);case"string":case"boolean":case"function":case"undefined":return t.indexOf(n,r);case"object":if(null===n)return t.indexOf(n,r)}for(;r<t.length;){if(e(t[r],n))return r;r+=1}return-1}},function(t,n,r){var e=r(7);t.exports=function(){var t=Object.prototype.toString;return"[object Arguments]"===t.call(arguments)?function(n){return"[object Arguments]"===t.call(n)}:function(t){return e("callee",t)}}()},function(t,n){t.exports=Number.isInteger||function(t){return t<<0===t}},function(t,n,r){var e=r(25);t.exports=function(t){return function n(r){for(var o,u,i,c=[],s=0,f=r.length;s<f;){if(e(r[s]))for(o=t?n(r[s]):r[s],i=0,u=o.length;i<u;)c[c.length]=o[i],i+=1;else c[c.length]=r[s];s+=1}return c}}},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.any=!1}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.any||(t=this.xf["@@transducer/step"](t,!1)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)&&(this.any=!0,t=o(this.xf["@@transducer/step"](t,!0))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.pred=t,this.lastValue=void 0,this.seenFirstValue=!1}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){var r=!1;return this.seenFirstValue?this.pred(this.lastValue,n)&&(r=!0):this.seenFirstValue=!0,this.lastValue=n,r?t:this.xf["@@transducer/step"](t,n)},e(function(n,r){return new t(n,r)})}()},function(t,n){t.exports=function(){function t(t){this.f=t}return t.prototype["@@transducer/init"]=function(){throw new Error("init not implemented on XWrap")},t.prototype["@@transducer/result"]=function(t){return t},t.prototype["@@transducer/step"]=function(t,n){return this.f(t,n)},function(n){return new t(n)}}()},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return null!=n&&n.constructor===t||n instanceof t})},function(t,n,r){var e=r(1),o=r(84);t.exports=e(function(t){return o(function(){return Array.prototype.slice.call(arguments,0)},t)})},function(t,n,r){var e=r(26);t.exports=e(-1)},function(t,n,r){var e=r(1),o=r(59);t.exports=e(function(t){return null!=t&&o(t.length)?t.length:NaN})},function(t,n,r){var e=r(0),o=r(9),u=r(50),i=r(6),c=r(8);t.exports=e(function(t,n){var r=i(t,n);return i(t,function(){return o(u,c(r,arguments[0]),Array.prototype.slice.call(arguments,1))})})},function(t,n,r){var e=r(1),o=r(123);t.exports=e(function(t){return o(t)/t.length})},function(t,n,r){var e=r(2),o=r(7);t.exports=e(function(t,n,r){var e,u={};for(e in n)o(e,n)&&(u[e]=o(e,r)?t(e,n[e],r[e]):n[e]);for(e in r)o(e,r)&&!o(e,u)&&(u[e]=r[e]);return u})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t*n})},function(t,n,r){var e=r(1);t.exports=e(function(t){return!t})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r={};return r[t]=n,r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t||n})},function(t,n,r){var e=r(2);t.exports=function(){var t=function(n){return{value:n,map:function(r){return t(r(n))}}};return e(function(n,r,e){return n(function(n){return t(r(n))})(e).value})}()},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r={},e=0,o=t.length;e<o;){var u=t[e];r[u]=n[u],e+=1}return r})},function(t,n,r){var e=r(12),o=r(218),u=r(14),i=r(63);t.exports=function(){if(0===arguments.length)throw new Error("pipe requires at least one argument");return e(arguments[0].length,u(o,arguments[0],i(arguments)))}},function(t,n,r){var e=r(12),o=r(219),u=r(14),i=r(63);t.exports=function(){if(0===arguments.length)throw new Error("pipeP requires at least one argument");return e(arguments[0].length,u(o,arguments[0],i(arguments)))}},function(t,n,r){var e=r(10),o=r(0);t.exports=o(function(t,n){return e([t],n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=r.length-1;e>=0;)n=t(r[e],n),e-=1;return n})},function(t,n,r){var e=r(0),o=r(50),u=r(8),i=r(120),c=r(121);t.exports=e(function(t,n){return"function"==typeof n.sequence?n.sequence(t):c(function(t,n){return o(u(i,t),n)},t([]),n)})},function(t,n,r){var e=r(32),o=r(14);t.exports=o(e,0)},function(t,n,r){var e=r(0),o=r(4),u=r(238),i=r(18);t.exports=e(o(["take"],u,function(t,n){return i(0,t<0?1/0:t,n)}))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r,e=Number(n),o=0;if(e<0||isNaN(e))throw new RangeError("n must be a non-negative number");for(r=new Array(e);o<e;)r[o]=t(o),o+=1;return r})},function(t,n,r){var e=r(206),o=r(0);t.exports=o(function(t,n){for(var r,o,u=new e,i=[],c=0;c<n.length;)o=n[c],r=t(o),u.add(r)&&i.push(o),c+=1;return i})},function(t,n,r){var e=r(2),o=r(76),u=r(19);t.exports=e(function(t,n,r){return o(u(n),t,r)})},function(t,n,r){var e=r(0),o=r(6);t.exports=e(function(t,n){return o(n.length,function(){for(var r=[],e=0;e<n.length;)r.push(n[e].call(this,arguments[e])),e+=1;return t.apply(this,r.concat(Array.prototype.slice.call(arguments,n.length)))})})},function(t,n,r){var e=r(1),o=r(13);t.exports=e(function(t){for(var n=o(t),r=n.length,e=[],u=0;u<r;)e[u]=t[n[u]],u+=1;return e})},function(t,n,r){var e=r(0),o=r(7);t.exports=e(function(t,n){for(var r in t)if(o(r,t)&&!t[r](n[r]))return!1;return!0})},function(t,n,r){"use strict";var e=r(3),o=e.anyPass,u=e.isEmpty,i=e.isNil;t.exports=o([i,u])},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(67);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=e.isArrayLike;t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(45);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(68);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(69);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=e.isEmpty;t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(30);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(46);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(70);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.isNil,u=e.complement;t.exports=u(o)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(48);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(71);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(49);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(72);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(73);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(74);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.both,u=r(48);t.exports=o(u,isNaN)},function(t,n,r){var e=r(19);t.exports=e(!1)},function(t,n,r){var e=r(19);t.exports=e(!0)},function(t,n){t.exports={"@@functional/placeholder":!0}},function(t,n,r){var e=r(10),o=r(1),u=r(6);t.exports=o(function(t){return u(t.length,function(){var n=0,r=arguments[0],o=arguments[arguments.length-1],u=Array.prototype.slice.call(arguments,0);return u[0]=function(){var t=r.apply(this,e(arguments,[n,o]));return n+=1,t},t.apply(this,u)})})},function(t,n,r){var e=r(0),o=r(4),u=r(224);t.exports=e(o(["all"],u,function(t,n){for(var r=0;r<n.length;){if(!t(n[r]))return!1;r+=1}return!0}))},function(t,n,r){var e=r(1),o=r(6),u=r(20),i=r(28),c=r(14);t.exports=e(function(t){return o(c(u,0,i("length",t)),function(){for(var n=0,r=t.length;n<r;){if(!t[n].apply(this,arguments))return!1;n+=1}return!0})})},function(t,n,r){var e=r(1),o=r(6),u=r(20),i=r(28),c=r(14);t.exports=e(function(t){return o(c(u,0,i("length",t)),function(){for(var n=0,r=t.length;n<r;){if(t[n].apply(this,arguments))return!0;n+=1}return!1})})},function(t,n,r){var e=r(207),o=r(0),u=r(4),i=r(225);t.exports=o(u([],i,e))},function(t,n,r){var e=r(10),o=r(0);t.exports=o(function(t,n){return e(n,[t])})},function(t,n,r){var e=r(1),o=r(79),u=r(6),i=r(8),c=r(20),s=r(28),f=r(14),a=r(129);t.exports=e(function t(n){return n=i(function(n){return"function"==typeof n?n:t(n)},n),u(f(c,0,s("length",a(n))),function(){var t=arguments;return i(function(n){return o(n,t)},n)})})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){var e=t(n),o=t(r);return e<o?-1:e>o?1:0})},function(t,n,r){var e=r(1),o=r(41);t.exports=e(function(t){return o(2,t)})},function(t,n,r){var e=r(0),o=r(22),u=r(77),i=r(40);t.exports=e(function(t,n){return o(t)?function(){return t.apply(this,arguments)&&n.apply(this,arguments)}:i(u)(t,n)})},function(t,n,r){var e=r(34);t.exports=e(function(t){return t.apply(this,Array.prototype.slice.call(arguments,1))})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){if(t>n)throw new Error("min must not be greater than max in clamp(min, max, value)");return r<t?t:r>n?n:r})},function(t,n,r){var e=r(93),o=r(1);t.exports=o(function(t){return null!=t&&"function"==typeof t.clone?t.clone():e(t,[],[],!0)})},function(t,n,r){var e=r(1);t.exports=e(function(t){return function(n,r){return t(n,r)?-1:t(r,n)?1:0}})},function(t,n,r){var e=r(40),o=r(113);t.exports=e(o)},function(t,n,r){var e=r(119),o=r(44);t.exports=function(){if(0===arguments.length)throw new Error("composeP requires at least one argument");return e.apply(this,o(arguments))}},function(t,n,r){var e=r(12),o=r(1),u=r(8),i=r(20),c=r(14);t.exports=o(function(t){var n=c(i,0,u(function(t){return t[0].length},t));return e(n,function(){for(var n=0;n<t.length;){if(t[n][0].apply(this,arguments))return t[n][1].apply(this,arguments);n+=1}})})},function(t,n,r){var e=r(1),o=r(83);t.exports=e(function(t){return o(t.length,t)})},function(t,n,r){var e=r(17),o=r(0);t.exports=o(e)},function(t,n,r){var e=r(42);t.exports=e(function(t,n){return t+1},0)},function(t,n,r){var e=r(32);t.exports=e(-1)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){var e=t(n),o=t(r);return e>o?-1:e<o?1:0})},function(t,n,r){var e=r(0),o=r(33),u=r(88);t.exports=e(function t(n,r){switch(n.length){case 0:return r;case 1:return u(n[0],r);default:var e=n[0],i=Array.prototype.slice.call(n,1);return null==r[e]?r:o(e,t(i,r[e]),r)}})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t/n})},function(t,n,r){var e=r(0),o=r(4),u=r(209),i=r(228);t.exports=e(o([],i,u))},function(t,n,r){var e=r(0),o=r(4),u=r(210),i=r(229);t.exports=e(o([],i,u))},function(t,n,r){var e=r(1),o=r(4),u=r(103),i=r(90),c=r(11);t.exports=e(o([],u(c),i(c))); | ||
},function(t,n,r){var e=r(0),o=r(4),u=r(230);t.exports=e(o(["dropWhile"],u,function(t,n){for(var r=0,e=n.length;r<e&&t(n[r]);)r+=1;return Array.prototype.slice.call(n,r)}))},function(t,n,r){var e=r(0),o=r(22),u=r(40),i=r(115);t.exports=e(function(t,n){return o(t)?function(){return t.apply(this,arguments)||n.apply(this,arguments)}:u(i)(t,n)})},function(t,n,r){var e=r(2),o=r(11);t.exports=e(function(t,n,r){return o(t(n),t(r))})},function(t,n,r){var e=r(2),o=r(11);t.exports=e(function(t,n,r){return o(n[t],r[t])})},function(t,n,r){var e=r(0);t.exports=e(function t(n,r){var e,o,u,i={};for(o in r)e=n[o],u=typeof e,i[o]="function"===u?e(r[o]):e&&"object"===u?t(e,r[o]):r[o];return i})},function(t,n,r){var e=r(0),o=r(4),u=r(232);t.exports=e(o(["find"],u,function(t,n){for(var r=0,e=n.length;r<e;){if(t(n[r]))return n[r];r+=1}}))},function(t,n,r){var e=r(0),o=r(4),u=r(233);t.exports=e(o([],u,function(t,n){for(var r=0,e=n.length;r<e;){if(t(n[r]))return r;r+=1}return-1}))},function(t,n,r){var e=r(0),o=r(4),u=r(234);t.exports=e(o([],u,function(t,n){for(var r=n.length-1;r>=0;){if(t(n[r]))return n[r];r-=1}}))},function(t,n,r){var e=r(0),o=r(4),u=r(235);t.exports=e(o([],u,function(t,n){for(var r=n.length-1;r>=0;){if(t(n[r]))return r;r-=1}return-1}))},function(t,n,r){var e=r(1),o=r(101);t.exports=e(o(!0))},function(t,n,r){var e=r(21),o=r(0);t.exports=o(e("forEach",function(t,n){for(var r=n.length,e=0;e<r;)t(n[e]),e+=1;return n}))},function(t,n,r){var e=r(0),o=r(13);t.exports=e(function(t,n){for(var r=o(n),e=0;e<r.length;){var u=r[e];t(n[u],u,n),e+=1}return n})},function(t,n,r){var e=r(1);t.exports=e(function(t){for(var n={},r=0;r<t.length;)n[t[r][0]]=t[r][1],r+=1;return n})},function(t,n,r){var e=r(21),o=r(0),u=r(42);t.exports=o(e("groupBy",u(function(t,n){return null==t&&(t=[]),t.push(n),t},null)))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=[],e=0,o=n.length;e<o;){for(var u=e+1;u<o&&t(n[e],n[u]);)u+=1;r.push(n.slice(e,u)),e=u}return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t>n})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t>=n})},function(t,n,r){var e=r(0),o=r(7);t.exports=e(o)},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t in n})},function(t,n,r){var e=r(26);t.exports=e(0)},function(t,n,r){var e=r(2),o=r(6);t.exports=e(function(t,n,r){return o(Math.max(t.length,n.length,r.length),function(){return t.apply(this,arguments)?n.apply(this,arguments):r.apply(this,arguments)})})},function(t,n,r){var e=r(32);t.exports=e(1)},function(t,n,r){var e=r(42);t.exports=e(function(t,n){return n},null)},function(t,n,r){var e=r(0),o=r(98),u=r(15);t.exports=e(function(t,n){return"function"!=typeof n.indexOf||u(n)?o(n,t,0):n.indexOf(t)})},function(t,n,r){var e=r(18);t.exports=e(0,-1)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){t=t<r.length&&t>=0?t:r.length;var e=Array.prototype.slice.call(r,0);return e.splice(t,0,n),e})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t=t<r.length&&t>=0?t:r.length,[].concat(Array.prototype.slice.call(r,0,t),n,Array.prototype.slice.call(r,t))})},function(t,n,r){var e=r(17);t.exports=function(){function t(){this._nativeSet="function"==typeof Set?new Set:null,this._items={}}function n(t,n,r){var o,u,i=typeof t;switch(i){case"string":case"number":return 0===t&&1/t===-(1/0)?!!r._items["-0"]||(n&&(r._items["-0"]=!0),!1):null!==r._nativeSet?n?(o=r._nativeSet.size,r._nativeSet.add(t),u=r._nativeSet.size,u===o):r._nativeSet.has(t):i in r._items?t in r._items[i]||(n&&(r._items[i][t]=!0),!1):(n&&(r._items[i]={},r._items[i][t]=!0),!1);case"boolean":if(i in r._items){var c=t?1:0;return!!r._items[i][c]||(n&&(r._items[i][c]=!0),!1)}return n&&(r._items[i]=t?[!1,!0]:[!0,!1]),!1;case"function":return null!==r._nativeSet?n?(o=r._nativeSet.size,r._nativeSet.add(t),u=r._nativeSet.size,u===o):r._nativeSet.has(t):i in r._items?!!e(t,r._items[i])||(n&&r._items[i].push(t),!1):(n&&(r._items[i]=[t]),!1);case"undefined":return!!r._items[i]||(n&&(r._items[i]=!0),!1);case"object":if(null===t)return!!r._items.null||(n&&(r._items.null=!0),!1);default:return i=Object.prototype.toString.call(t),i in r._items?!!e(t,r._items[i])||(n&&r._items[i].push(t),!1):(n&&(r._items[i]=[t]),!1)}}return t.prototype.add=function(t){return!n(t,!0,this)},t.prototype.has=function(t){return n(t,!1,this)},t}()},function(t,n){t.exports=function(t,n){for(var r=0,e=n.length-(t-1),o=new Array(e>=0?e:0);r<e;)o[r]=Array.prototype.slice.call(n,r,r+t),r+=1;return o}},function(t,n){t.exports=function(t){for(var n,r=[];!(n=t.next()).done;)r.push(n.value);return r}},function(t,n,r){var e=r(124);t.exports=function(t,n){return e(t<n.length?n.length-t:0,n)}},function(t,n){t.exports=function(t,n){for(var r=n.length-1;r>=0&&t(n[r]);)r-=1;return Array.prototype.slice.call(n,0,r+1)}},function(t,n,r){var e=r(208),o=r(214),u=r(7),i=r(92),c=r(13),s=r(64);t.exports=function t(n,r,f,a){if(i(n,r))return!0;if(s(n)!==s(r))return!1;if(null==n||null==r)return!1;if("function"==typeof n.equals||"function"==typeof r.equals)return"function"==typeof n.equals&&n.equals(r)&&"function"==typeof r.equals&&r.equals(n);switch(s(n)){case"Arguments":case"Array":case"Object":if("function"==typeof n.constructor&&"Promise"===o(n.constructor))return n===r;break;case"Boolean":case"Number":case"String":if(typeof n!=typeof r||!i(n.valueOf(),r.valueOf()))return!1;break;case"Date":if(!i(n.valueOf(),r.valueOf()))return!1;break;case"Error":return n.name===r.name&&n.message===r.message;case"RegExp":if(n.source!==r.source||n.global!==r.global||n.ignoreCase!==r.ignoreCase||n.multiline!==r.multiline||n.sticky!==r.sticky||n.unicode!==r.unicode)return!1;break;case"Map":case"Set":if(!t(e(n.entries()),e(r.entries()),f,a))return!1;break;case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":break;case"ArrayBuffer":break;default:return!1}var p=c(n);if(p.length!==c(r).length)return!1;for(var l=f.length-1;l>=0;){if(f[l]===n)return a[l]===r;l-=1}for(f.push(n),a.push(r),l=p.length-1;l>=0;){var h=p[l];if(!u(h,r)||!t(r[h],n[h],f,a))return!1;l-=1}return f.pop(),a.pop(),!0}},function(t,n,r){var e=r(213),o=r(9),u=r(5),i=r(25);t.exports=function(){var t=function(t){return{"@@transducer/init":u.init,"@@transducer/result":function(n){return t["@@transducer/result"](n)},"@@transducer/step":function(n,r){var o=t["@@transducer/step"](n,r);return o["@@transducer/reduced"]?e(o):o}}};return function(n){var r=t(n);return{"@@transducer/init":u.init,"@@transducer/result":function(t){return r["@@transducer/result"](t)},"@@transducer/step":function(t,n){return i(n)?o(r,t,n):o(r,t,[n])}}}}()},function(t,n){t.exports=function(t){return{"@@transducer/value":t,"@@transducer/reduced":!0}}},function(t,n){t.exports=function(t){var n=String(t).match(/^function (\w*)/);return null==n?"":n[1]}},function(t,n){t.exports=function(t){return"[object RegExp]"===Object.prototype.toString.call(t)}},function(t,n,r){var e=r(7);t.exports=function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var n=Object(t),r=1,o=arguments.length;r<o;){var u=arguments[r];if(null!=u)for(var i in u)e(i,u)&&(n[i]=u[i]);r+=1}return n}},function(t,n){t.exports=function(t){return[t]}},function(t,n){t.exports=function(t,n){return function(){return n.call(this,t.apply(this,arguments))}}},function(t,n){t.exports=function(t,n){return function(){var r=this;return t.apply(r,arguments).then(function(t){return n.call(r,t)})}}},function(t,n){t.exports=function(t){var n=t.replace(/\\/g,"\\\\").replace(/[\b]/g,"\\b").replace(/\f/g,"\\f").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\t/g,"\\t").replace(/\v/g,"\\v").replace(/\0/g,"\\0");return'"'+n.replace(/"/g,'\\"')+'"'}},function(t,n,r){var e=r(56),o=r(58),u=r(61),i=r(25),c=r(114);t.exports=function(){var t={"@@transducer/init":Array,"@@transducer/step":function(t,n){return t.push(n),t},"@@transducer/result":o},n={"@@transducer/init":String,"@@transducer/step":function(t,n){return t+n},"@@transducer/result":o},r={"@@transducer/init":Object,"@@transducer/step":function(t,n){return e(t,i(n)?c(n[0],n[1]):n)},"@@transducer/result":o};return function(e){if(u(e))return e;if(i(e))return t;if("string"==typeof e)return n;if("object"==typeof e)return r;throw new Error("Cannot create transformer for "+e)}}()},function(t,n){t.exports=function(){var t=function(t){return(t<10?"0":"")+t};return"function"==typeof Date.prototype.toISOString?function(t){return t.toISOString()}:function(n){return n.getUTCFullYear()+"-"+t(n.getUTCMonth()+1)+"-"+t(n.getUTCDate())+"T"+t(n.getUTCHours())+":"+t(n.getUTCMinutes())+":"+t(n.getUTCSeconds())+"."+(n.getUTCMilliseconds()/1e3).toFixed(3).slice(2,5)+"Z"}}()},function(t,n,r){var e=r(17),o=r(38),u=r(220),i=r(222),c=r(13),s=r(43);t.exports=function t(n,r){var f=function(o){var u=r.concat([n]);return e(o,u)?"<Circular>":t(o,u)},a=function(t,n){return o(function(n){return u(n)+": "+f(t[n])},n.slice().sort())};switch(Object.prototype.toString.call(n)){case"[object Arguments]":return"(function() { return arguments; }("+o(f,n).join(", ")+"))";case"[object Array]":return"["+o(f,n).concat(a(n,s(function(t){return/^\d+$/.test(t)},c(n)))).join(", ")+"]";case"[object Boolean]":return"object"==typeof n?"new Boolean("+f(n.valueOf())+")":n.toString();case"[object Date]":return"new Date("+(isNaN(n.valueOf())?f(NaN):u(i(n)))+")";case"[object Null]":return"null";case"[object Number]":return"object"==typeof n?"new Number("+f(n.valueOf())+")":1/n===-(1/0)?"-0":n.toString(10);case"[object String]":return"object"==typeof n?"new String("+f(n.valueOf())+")":u(n);case"[object Undefined]":return"undefined";default:if("function"==typeof n.toString){var p=n.toString();if("[object Object]"!==p)return p}return"{"+a(n,c(n)).join(", ")+"}"}}},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.all=!0}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.all&&(t=this.xf["@@transducer/step"](t,!0)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)||(this.all=!1,t=o(this.xf["@@transducer/step"](t,!1))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(10),o=r(0),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.pos=0,this.full=!1,this.acc=new Array(t)}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.acc=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.store(n),this.full?this.xf["@@transducer/step"](t,this.getCopy()):t},t.prototype.store=function(t){this.acc[this.pos]=t,this.pos+=1,this.pos===this.acc.length&&(this.pos=0,this.full=!0)},t.prototype.getCopy=function(){return e(Array.prototype.slice.call(this.acc,this.pos),Array.prototype.slice.call(this.acc,0,this.pos))},o(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(212),u=r(8);t.exports=e(function(t,n){return u(t,o(n))})},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.n=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){return this.n>0?(this.n-=1,t):this.xf["@@transducer/step"](t,n)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.pos=0,this.full=!1,this.acc=new Array(t)}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=function(t){return this.acc=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.full&&(t=this.xf["@@transducer/step"](t,this.acc[this.pos])),this.store(n),t},t.prototype.store=function(t){this.acc[this.pos]=t,this.pos+=1,this.pos===this.acc.length&&(this.pos=0,this.full=!0)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(9),u=r(5);t.exports=function(){function t(t,n){this.f=t,this.retained=[],this.xf=n}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.retained=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)?this.retain(t,n):this.flush(t,n)},t.prototype.flush=function(t,n){return t=o(this.xf["@@transducer/step"],t,this.retained),this.retained=[],this.xf["@@transducer/step"](t,n)},t.prototype.retain=function(t,n){return this.retained.push(n),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){if(this.f){if(this.f(n))return t;this.f=null}return this.xf["@@transducer/step"](t,n)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){return this.f(n)?this.xf["@@transducer/step"](t,n):t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.found=!1}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.found||(t=this.xf["@@transducer/step"](t,void 0)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)&&(this.found=!0,t=o(this.xf["@@transducer/step"](t,n))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.idx=-1,this.found=!1}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.found||(t=this.xf["@@transducer/step"](t,-1)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.idx+=1,this.f(n)&&(this.found=!0,t=o(this.xf["@@transducer/step"](t,this.idx))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=function(t){return this.xf["@@transducer/result"](this.xf["@@transducer/step"](t,this.last))},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)&&(this.last=n),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.idx=-1,this.lastIdx=-1}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=function(t){return this.xf["@@transducer/result"](this.xf["@@transducer/step"](t,this.lastIdx))},t.prototype["@@transducer/step"]=function(t,n){return this.idx+=1,this.f(n)&&(this.lastIdx=this.idx),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){return this.xf["@@transducer/step"](t,this.f(n))},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(36),o=r(7),u=r(5);t.exports=function(){function t(t,n,r,e){this.valueFn=t,this.valueAcc=n,this.keyFn=r,this.xf=e,this.inputs={}}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){var n;for(n in this.inputs)if(o(n,this.inputs)&&(t=this.xf["@@transducer/step"](t,this.inputs[n]),t["@@transducer/reduced"])){t=t["@@transducer/value"];break}return this.inputs=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){var r=this.keyFn(n);return this.inputs[r]=this.inputs[r]||[r,this.valueAcc],this.inputs[r][1]=this.valueFn(this.inputs[r][1],n),t},e(4,[],function(n,r,e,o){return new t(n,r,e,o)})}()},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.n=t,this.i=0}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=u.result,t.prototype["@@transducer/step"]=function(t,n){this.i+=1;var r=0===this.n?t:this.xf["@@transducer/step"](t,n);return this.i>=this.n?o(r):r},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=u.result,t.prototype["@@transducer/step"]=function(t,n){return this.f(n)?this.xf["@@transducer/step"](t,n):o(t)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(17),o=r(0),u=r(97),i=r(35),c=r(65);t.exports=o(function(t,n){var r,o;return t.length>n.length?(r=t,o=n):(r=n,o=t),c(u(i(e)(r),o))})},function(t,n,r){var e=r(57),o=r(2),u=r(66);t.exports=o(function(t,n,r){var o,i;n.length>r.length?(o=n,i=r):(o=r,i=n);for(var c=[],s=0;s<i.length;)e(t,i[s],o)&&(c[c.length]=i[s]),s+=1;return u(t,c)})},function(t,n,r){var e=r(21),o=r(0);t.exports=o(e("intersperse",function(t,n){for(var r=[],e=0,o=n.length;e<o;)e===o-1?r.push(n[e]):r.push(n[e],t),e+=1;return r}))},function(t,n,r){var e=r(93),o=r(2),u=r(61),i=r(9),c=r(221);t.exports=o(function(t,n,r){return u(t)?i(n(t),t["@@transducer/init"](),r):i(n(c(t)),e(t,[],[],!1),r)})},function(t,n,r){var e=r(1),o=r(7),u=r(13);t.exports=e(function(t){for(var n=u(t),r=n.length,e=0,i={};e<r;){var c=n[e],s=t[c],f=o(s,i)?i[s]:i[s]=[];f[f.length]=c,e+=1}return i})},function(t,n,r){var e=r(1),o=r(13);t.exports=e(function(t){for(var n=o(t),r=n.length,e=0,u={};e<r;){var i=n[e];u[t[i]]=i,e+=1}return u})},function(t,n,r){var e=r(1),o=r(91),u=r(11);t.exports=e(function(t){return null!=t&&u(t,o(t))})},function(t,n,r){var e=r(1);t.exports=e(function(t){return null==t})},function(t,n,r){var e=r(24);t.exports=e(1,"join")},function(t,n,r){var e=r(1);t.exports=e(function(t){var n,r=[];for(n in t)r[r.length]=n;return r})},function(t,n,r){var e=r(0),o=r(15),u=r(11);t.exports=e(function(t,n){if("function"!=typeof n.lastIndexOf||o(n)){for(var r=n.length-1;r>=0;){if(u(n[r],t))return r;r-=1}return-1}return n.lastIndexOf(t)})},function(t,n,r){var e=r(1),o=r(39),u=r(26),i=r(127);t.exports=e(function(t){return o(u(t),i(t))})},function(t,n,r){var e=r(1),o=r(80),u=r(39),i=r(27);t.exports=e(function(t){return u(i(t),o(t))})},function(t,n,r){var e=r(1),o=r(33),u=r(39),i=r(62);t.exports=e(function(t){return u(i(t),o(t))})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t<n})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t<=n})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=0,o=r.length,u=[],i=[n];e<o;)i=t(i[0],r[e]),u[e]=i[1],e+=1;return[i[0],u]})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=r.length-1,o=[],u=[n];e>=0;)u=t(r[e],u[0]),o[e]=u[1],e-=1;return[o,u[0]]})},function(t,n,r){var e=r(0),o=r(9),u=r(13);t.exports=e(function(t,n){return o(function(r,e){return r[e]=t(n[e],e,n),r},{},u(n))})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n.match(t)||[]})},function(t,n,r){var e=r(0),o=r(100);t.exports=e(function(t,n){return o(t)?!o(n)||n<1?NaN:(t%n+n)%n:NaN})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)>t(n)?r:n})},function(t,n,r){var e=r(1),o=r(110);t.exports=e(function(t){var n=t.length;if(0===n)return NaN;var r=2-n%2,e=(n-r)/2;return o(Array.prototype.slice.call(t,0).sort(function(t,n){return t<n?-1:t>n?1:0}).slice(e,e+r))})},function(t,n,r){var e=r(12),o=r(1),u=r(7),i=r(29);t.exports=o(function(t){var n={};return e(t.length,function(){var r=i(arguments);return u(r,n)||(n[r]=t.apply(this,arguments)),n[r]})})},function(t,n,r){var e=r(56),o=r(0);t.exports=o(function(t,n){return e({},t,n)})},function(t,n,r){var e=r(56),o=r(1);t.exports=o(function(t){return e.apply(null,[{}].concat(t))})},function(t,n,r){var e=r(2),o=r(111);t.exports=e(function(t,n,r){return o(function(n,r,e){return t(r,e)},n,r)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n<t?n:t})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)<t(n)?r:n})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t%n})},function(t,n,r){var e=r(1);t.exports=e(function(t){return-t})},function(t,n,r){var e=r(95),o=r(0),u=r(4),i=r(102),c=r(78);t.exports=o(e(u(["any"],i,c)))},function(t,n,r){var e=r(1),o=r(6),u=r(26);t.exports=e(function(t){var n=t<0?1:t+1;return o(n,function(){return u(t,arguments)})})},function(t,n,r){var e=r(1),o=r(217);t.exports=e(o)},function(t,n,r){var e=r(17),o=r(0);t.exports=o(function(t,n){var r={};for(var o in n)e(o,t)||(r[o]=n[o]);return r})},function(t,n,r){var e=r(12),o=r(1);t.exports=o(function(t){var n,r=!1;return e(t.length,function(){return r?n:(r=!0,n=t.apply(this,arguments))})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return[t,n]})},function(t,n,r){var e=r(10),o=r(96);t.exports=o(e)},function(t,n,r){var e=r(10),o=r(96),u=r(35);t.exports=o(u(e))},function(t,n,r){var e=r(54),o=r(106),u=r(43);t.exports=o([e,u])},function(t,n,r){var e=r(2),o=r(11),u=r(27);t.exports=e(function(t,n,r){return o(u(t,r),n)})},function(t,n,r){var e=r(2),o=r(85),u=r(27);t.exports=e(function(t,n,r){return o(t,u(n,r))})},function(t,n,r){var e=r(2),o=r(27);t.exports=e(function(t,n,r){return n.length>0&&t(o(n,r))})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r={},e=0;e<t.length;)t[e]in n&&(r[t[e]]=n[t[e]]),e+=1;return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r={};for(var e in n)t(n[e],e,n)&&(r[e]=n[e]);return r})},function(t,n,r){var e=r(82),o=r(44);t.exports=function(){if(0===arguments.length)throw new Error("pipeK requires at least one argument");return e.apply(this,o(arguments))}},function(t,n,r){var e=r(112),o=r(14);t.exports=o(e,1)},function(t,n,r){var e=r(38),o=r(55),u=r(117),i=r(128);t.exports=i(e,[u,o])},function(t,n,r){var e=r(2),o=r(11);t.exports=e(function(t,n,r){return o(n,r[t])})},function(t,n,r){var e=r(2),o=r(105);t.exports=e(function(t,n,r){return o(t,r[n])})},function(t,n,r){var e=r(2),o=r(7);t.exports=e(function(t,n,r){return null!=r&&o(n,r)?r[n]:t})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r[n])})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=t.length,e=[],o=0;o<r;)e[o]=n[t[o]],o+=1;return e})},function(t,n,r){var e=r(0),o=r(59);t.exports=e(function(t,n){if(!o(t)||!o(n))throw new TypeError("Both arguments to range must be numbers");for(var r=[],e=t;e<n;)r.push(e),e+=1;return r})},function(t,n,r){var e=r(36),o=r(9),u=r(16);t.exports=e(4,[],function(t,n,r,e){return o(function(r,e){return t(r,e)?n(r,e):u(r)},r,e)})},function(t,n,r){var e=r(1),o=r(16);t.exports=e(o)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){var e=Array.prototype.slice.call(r,0);return e.splice(t,n),e})},function(t,n,r){var e=r(0),o=r(19),u=r(125);t.exports=e(function(t,n){return u(o(t),n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return r.replace(t,n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=0,o=r.length,u=[n];e<o;)n=t(n,r[e]),u[e+1]=n,e+=1;return u})},function(t,n,r){var e=r(2),o=r(19),u=r(116);t.exports=e(function(t,n,r){return u(t,o(n),r)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Array.prototype.slice.call(n,0).sort(t)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Array.prototype.slice.call(n,0).sort(function(n,r){var e=t(n),o=t(r);return e<o?-1:e>o?1:0})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Array.prototype.slice.call(n,0).sort(function(n,r){for(var e=0,o=0;0===e&&o<t.length;)e=t[o](n,r),o+=1;return e})})},function(t,n,r){var e=r(24);t.exports=e(1,"split")},function(t,n,r){var e=r(0),o=r(108),u=r(18);t.exports=e(function(t,n){return[u(0,t,n),u(t,o(n),n)]})},function(t,n,r){var e=r(0),o=r(18);t.exports=e(function(t,n){if(t<=0)throw new Error("First argument to splitEvery must be a positive integer");for(var r=[],e=0;e<n.length;)r.push(o(e,e+=t,n));return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=0,e=n.length,o=[];r<e&&!t(n[r]);)o.push(n[r]),r+=1;return[o,Array.prototype.slice.call(n,r)]})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Number(t)-Number(n)})},function(t,n,r){var e=r(0),o=r(53),u=r(86);t.exports=e(function(t,n){return o(u(t,n),u(n,t))})},function(t,n,r){var e=r(2),o=r(53),u=r(87);t.exports=e(function(t,n,r){return o(u(t,n,r),u(t,r,n))})},function(t,n,r){var e=r(0),o=r(89);t.exports=e(function(t,n){return o(t>=0?n.length-t:0,n)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=n.length-1;r>=0&&t(n[r]);)r-=1;return Array.prototype.slice.call(n,r+1)})},function(t,n,r){var e=r(0),o=r(4),u=r(239);t.exports=e(o(["takeWhile"],u,function(t,n){for(var r=0,e=n.length;r<e&&t(n[r]);)r+=1;return Array.prototype.slice.call(n,0,r)}))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t(n),n})},function(t,n,r){var e=r(94),o=r(0),u=r(215),i=r(29);t.exports=o(function(t,n){if(!u(t))throw new TypeError("‘test’ requires a value of type RegExp as its first argument; received "+i(t));return e(t).test(n)})},function(t,n,r){var e=r(24);t.exports=e(0,"toLowerCase")},function(t,n,r){var e=r(1),o=r(7);t.exports=e(function(t){var n=[];for(var r in t)o(r,t)&&(n[n.length]=[r,t[r]]);return n})},function(t,n,r){var e=r(1);t.exports=e(function(t){var n=[];for(var r in t)n[n.length]=[r,t[r]];return n})},function(t,n,r){var e=r(24);t.exports=e(0,"toUpperCase")},function(t,n,r){var e=r(9),o=r(104),u=r(6);t.exports=u(4,function(t,n,r,u){return e(t("function"==typeof n?o(n):n),r,u)})},function(t,n,r){var e=r(1);t.exports=e(function(t){for(var n=0,r=[];n<t.length;){for(var e=t[n],o=0;o<e.length;)"undefined"==typeof r[o]&&(r[o]=[]),r[o].push(e[o]),o+=1;n+=1}return r})},function(t,n,r){var e=r(2),o=r(8),u=r(122);t.exports=e(function(t,n,r){return u(t,o(n,r))})},function(t,n,r){var e=r(1);t.exports=function(){var t="\t\n\v\f\r \u2028\u2029\ufeff",n="",r="function"==typeof String.prototype.trim;return e(r&&!t.trim()&&n.trim()?function(t){return t.trim()}:function(n){var r=new RegExp("^["+t+"]["+t+"]*"),e=new RegExp("["+t+"]["+t+"]*$");return n.replace(r,"").replace(e,"")})}()},function(t,n,r){var e=r(12),o=r(10),u=r(0);t.exports=u(function(t,n){return e(t.length,function(){try{return t.apply(this,arguments)}catch(t){return n.apply(this,o([t],arguments))}})})},function(t,n,r){var e=r(1);t.exports=e(function(t){return function(){return t(Array.prototype.slice.call(arguments,0))}})},function(t,n,r){var e=r(1),o=r(41);t.exports=e(function(t){return o(1,t)})},function(t,n,r){var e=r(0),o=r(6);t.exports=e(function(t,n){return o(t,function(){for(var r,e=1,o=n,u=0;e<=t&&"function"==typeof o;)r=e===t?arguments.length:u+o.length,o=o.apply(this,Array.prototype.slice.call(arguments,u,r)),e+=1,u=r;return o})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=t(n),e=[];r&&r.length;)e[e.length]=r[0],r=t(r[1]);return e})},function(t,n,r){var e=r(10),o=r(0),u=r(52),i=r(65);t.exports=o(u(i,e))},function(t,n,r){var e=r(10),o=r(2),u=r(66);t.exports=o(function(t,n,r){return u(t,e(n,r))})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)?r:n(r)})},function(t,n,r){var e=r(58),o=r(51);t.exports=o(e)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=r;!t(e);)e=n(e);return e})},function(t,n,r){var e=r(1);t.exports=e(function(t){var n,r=[];for(n in t)r[r.length]=t[n];return r})},function(t,n,r){var e=r(0);t.exports=function(){var t=function(t){return{value:t,map:function(){return this}}};return e(function(n,r){return n(t)(r).value})}()},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)?n(r):r})},function(t,n,r){var e=r(0),o=r(11),u=r(8),i=r(130);t.exports=e(function(t,n){return i(u(o,t),n)})},function(t,n,r){var e=r(17),o=r(0),u=r(35),i=r(43);t.exports=o(function(t,n){return i(u(e)(t),n)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r,e=0,o=t.length,u=n.length,i=[];e<o;){for(r=0;r<u;)i[i.length]=[t[e],n[r]],r+=1;e+=1}return i})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=[],e=0,o=Math.min(t.length,n.length);e<o;)r[e]=[t[e],n[e]],e+=1;return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=0,e=Math.min(t.length,n.length),o={};r<e;)o[t[r]]=n[r],r+=1;return o})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=[],o=0,u=Math.min(n.length,r.length);o<u;)e[o]=t(n[o],r[o]),o+=1;return e})},function(t,n,r){"use strict";var e=r(147),o=r(74),u=r(47),i=r(31),c=r(141),s=r(67),f=r(132),a=r(68),p=r(135),l=r(137),h=r(131),v=r(73),x=r(146),y=r(133),d=r(46),g=r(139),m=r(45),b=r(134),w=r(30),j=r(138),A=r(71),O=r(143),N=r(49),S=r(144),E=r(72),_=r(145),k=r(69),q=r(136),P=r(48),F=r(142),I=r(70),W=r(140);t.exports={isNotUndefined:e,isUndefined:o,isNull:u,isNotNull:i,isNotNil:c,isArray:s,isNotArray:f,isBoolean:a,isNotBoolean:p,isNotEmpty:l,isNilOrEmpty:h,isString:v,isNotString:x,isNotArrayLike:y,isGeneratorFunction:d,isNotGeneratorFunction:g,isAsyncFunction:m,isNotAsyncFunction:b,isFunction:w,isNotFunction:j,isObject:A,isNotObject:O,isObjectLike:N,isNotObjectLike:S,isPlainObject:E,isNotPlainObject:_,isDate:k,isNotDate:q,isNumber:P,isNotNumber:F,isNaN:I,isNotNaN:W}}])}); | ||
!function(t,n){"object"==typeof exports&&"object"==typeof module?module.exports=n():"function"==typeof define&&define.amd?define([],n):"object"==typeof exports?exports.RA=n():t.RA=n()}(this,function(){return function(t){function n(e){if(r[e])return r[e].exports;var o=r[e]={i:e,l:!1,exports:{}};return t[e].call(o.exports,o,o.exports,n),o.l=!0,o.exports}var r={};return n.m=t,n.c=r,n.i=function(t){return t},n.d=function(t,r,e){n.o(t,r)||Object.defineProperty(t,r,{configurable:!1,enumerable:!0,get:e})},n.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(r,"a",r),r},n.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},n.p="",n(n.s=349)}([function(t,n,r){var e=r(1),o=r(38);t.exports=function(t){return function n(r,u){switch(arguments.length){case 0:return n;case 1:return o(r)?n:e(function(n){return t(r,n)});default:return o(r)&&o(u)?n:o(r)?e(function(n){return t(n,u)}):o(u)?e(function(n){return t(r,n)}):t(r,u)}}}},function(t,n,r){var e=r(38);t.exports=function(t){return function n(r){return 0===arguments.length||e(r)?n:t.apply(this,arguments)}}},function(t,n,r){var e=r(1),o=r(0),u=r(38);t.exports=function(t){return function n(r,i,c){switch(arguments.length){case 0:return n;case 1:return u(r)?n:o(function(n,e){return t(r,n,e)});case 2:return u(r)&&u(i)?n:u(r)?o(function(n,r){return t(n,i,r)}):u(i)?o(function(n,e){return t(r,n,e)}):e(function(n){return t(r,i,n)});default:return u(r)&&u(i)&&u(c)?n:u(r)&&u(i)?o(function(n,r){return t(n,r,c)}):u(r)&&u(c)?o(function(n,r){return t(n,i,r)}):u(i)&&u(c)?o(function(n,e){return t(r,n,e)}):u(r)?e(function(n){return t(n,i,c)}):u(i)?e(function(n){return t(r,n,c)}):u(c)?e(function(n){return t(r,i,n)}):t(r,i,c)}}}},function(t,n,r){t.exports={F:r(155),T:r(156),__:r(157),add:r(33),addIndex:r(158),adjust:r(78),all:r(159),allPass:r(160),always:r(19),and:r(79),any:r(80),anyPass:r(161),ap:r(51),aperture:r(162),append:r(163),apply:r(81),applySpec:r(164),ascend:r(165),assoc:r(34),assocPath:r(82),binary:r(166),bind:r(83),both:r(167),call:r(168),chain:r(52),clamp:r(169),clone:r(170),comparator:r(171),complement:r(172),compose:r(53),composeK:r(84),composeP:r(173),concat:r(54),cond:r(174),construct:r(175),constructN:r(85),contains:r(176),converge:r(86),countBy:r(177),curry:r(35),curryN:r(6),dec:r(178),descend:r(179),defaultTo:r(87),difference:r(88),differenceWith:r(89),dissoc:r(90),dissocPath:r(180),divide:r(181),drop:r(91),dropLast:r(182),dropLastWhile:r(183),dropRepeats:r(184),dropRepeatsWith:r(92),dropWhile:r(185),either:r(186),empty:r(93),eqBy:r(187),eqProps:r(188),equals:r(11),evolve:r(189),filter:r(55),find:r(190),findIndex:r(191),findLast:r(192),findLastIndex:r(193),flatten:r(194),flip:r(36),forEach:r(195),forEachObjIndexed:r(196),fromPairs:r(197),groupBy:r(198),groupWith:r(199),gt:r(200),gte:r(201),has:r(202),hasIn:r(203),head:r(204),identical:r(94),identity:r(56),ifElse:r(205),inc:r(206),indexBy:r(207),indexOf:r(208),init:r(209),insert:r(210),insertAll:r(211),intersection:r(246),intersectionWith:r(247),intersperse:r(248),into:r(249),invert:r(250),invertObj:r(251),invoker:r(24),is:r(107),isArrayLike:r(25),isEmpty:r(252),isNil:r(253),join:r(254),juxt:r(108),keys:r(13),keysIn:r(255),last:r(109),lastIndexOf:r(256),length:r(110),lens:r(40),lensIndex:r(257),lensPath:r(258),lensProp:r(259),lift:r(41),liftN:r(111),lt:r(260),lte:r(261),map:r(8),mapAccum:r(262),mapAccumRight:r(263),mapObjIndexed:r(264),match:r(265),mathMod:r(266),max:r(20),maxBy:r(267),mean:r(112),median:r(268),memoize:r(269),merge:r(270),mergeAll:r(271),mergeWith:r(272),mergeWithKey:r(113),min:r(273),minBy:r(274),modulo:r(275),multiply:r(114),nAry:r(42),negate:r(276),none:r(277),not:r(115),nth:r(26),nthArg:r(278),objOf:r(116),of:r(279),omit:r(280),once:r(281),or:r(117),over:r(118),pair:r(282),partial:r(283),partialRight:r(284),partition:r(285),path:r(27),pathEq:r(286),pathOr:r(287),pathSatisfies:r(288),pick:r(289),pickAll:r(119),pickBy:r(290),pipe:r(120),pipeK:r(291),pipeP:r(121),pluck:r(28),prepend:r(122),product:r(292),project:r(293),prop:r(63),propEq:r(294),propIs:r(295),propOr:r(296),propSatisfies:r(297),props:r(298),range:r(299),reduce:r(14),reduceBy:r(43),reduceRight:r(123),reduceWhile:r(300),reduced:r(301),reject:r(44),remove:r(302),repeat:r(303),replace:r(304),reverse:r(45),scan:r(305),sequence:r(124),set:r(306),slice:r(18),sort:r(307),sortBy:r(308),sortWith:r(309),split:r(310),splitAt:r(311),splitEvery:r(312),splitWhen:r(313),subtract:r(314),sum:r(125),symmetricDifference:r(315),symmetricDifferenceWith:r(316),tail:r(64),take:r(126),takeLast:r(317),takeLastWhile:r(318),takeWhile:r(319),tap:r(320),test:r(321),times:r(127),toLower:r(322),toPairs:r(323),toPairsIn:r(324),toString:r(29),toUpper:r(325),transduce:r(326),transpose:r(327),traverse:r(328),trim:r(329),tryCatch:r(330),type:r(65),unapply:r(331),unary:r(332),uncurryN:r(333),unfold:r(334),union:r(335),unionWith:r(336),uniq:r(66),uniqBy:r(128),uniqWith:r(67),unless:r(337),unnest:r(338),until:r(339),update:r(129),useWith:r(130),values:r(131),valuesIn:r(340),view:r(341),when:r(342),where:r(132),whereEq:r(343),without:r(344),xprod:r(345),zip:r(346),zipObj:r(347),zipWith:r(348)}},function(t,n,r){var e=r(15),o=r(62);t.exports=function(t,n,r){return function(){if(0===arguments.length)return r();var u=Array.prototype.slice.call(arguments,0),i=u.pop();if(!e(i)){for(var c=0;c<t.length;){if("function"==typeof i[t[c]])return i[t[c]].apply(i,u);c+=1}if(o(i)){var s=n.apply(null,u);return s(i)}}return r.apply(this,arguments)}}},function(t,n){t.exports={init:function(){return this.xf["@@transducer/init"]()},result:function(t){return this.xf["@@transducer/result"](t)}}},function(t,n,r){var e=r(12),o=r(1),u=r(0),i=r(37);t.exports=u(function(t,n){return 1===t?o(n):e(t,i(t,[],n))})},function(t,n){t.exports=function(t,n){return Object.prototype.hasOwnProperty.call(n,t)}},function(t,n,r){var e=r(0),o=r(4),u=r(39),i=r(9),c=r(242),s=r(6),f=r(13);t.exports=e(o(["map"],c,function(t,n){switch(Object.prototype.toString.call(n)){case"[object Function]":return s(n.length,function(){return t.call(this,n.apply(this,arguments))});case"[object Object]":return i(function(r,e){return r[e]=t(n[e]),r},{},f(n));default:return u(t,n)}}))},function(t,n,r){var e=r(106),o=r(83),u=r(25);t.exports=function(){function t(t,n,r){for(var e=0,o=r.length;e<o;){if(n=t["@@transducer/step"](n,r[e]),n&&n["@@transducer/reduced"]){n=n["@@transducer/value"];break}e+=1}return t["@@transducer/result"](n)}function n(t,n,r){for(var e=r.next();!e.done;){if(n=t["@@transducer/step"](n,e.value),n&&n["@@transducer/reduced"]){n=n["@@transducer/value"];break}e=r.next()}return t["@@transducer/result"](n)}function r(t,n,r){return t["@@transducer/result"](r.reduce(o(t["@@transducer/step"],t),n))}var i="undefined"!=typeof Symbol?Symbol.iterator:"@@iterator";return function(o,c,s){if("function"==typeof o&&(o=e(o)),u(s))return t(o,c,s);if("function"==typeof s.reduce)return r(o,c,s);if(null!=s[i])return n(o,c,s[i]());if("function"==typeof s.next)return n(o,c,s);throw new TypeError("reduce: list must be array or iterable")}}()},function(t,n){t.exports=function(t,n){t=t||[],n=n||[];var r,e=t.length,o=n.length,u=[];for(r=0;r<e;)u[u.length]=t[r],r+=1;for(r=0;r<o;)u[u.length]=n[r],r+=1;return u}},function(t,n,r){var e=r(0),o=r(217);t.exports=e(function(t,n){return o(t,n,[],[])})},function(t,n){t.exports=function(t,n){switch(t){case 0:return function(){return n.apply(this,arguments)};case 1:return function(t){return n.apply(this,arguments)};case 2:return function(t,r){return n.apply(this,arguments)};case 3:return function(t,r,e){return n.apply(this,arguments)};case 4:return function(t,r,e,o){return n.apply(this,arguments)};case 5:return function(t,r,e,o,u){return n.apply(this,arguments)};case 6:return function(t,r,e,o,u,i){return n.apply(this,arguments)};case 7:return function(t,r,e,o,u,i,c){return n.apply(this,arguments)};case 8:return function(t,r,e,o,u,i,c,s){return n.apply(this,arguments)};case 9:return function(t,r,e,o,u,i,c,s,f){return n.apply(this,arguments)};case 10:return function(t,r,e,o,u,i,c,s,f,a){return n.apply(this,arguments)};default:throw new Error("First argument to _arity must be a non-negative integer no greater than ten")}}},function(t,n,r){var e=r(1),o=r(7),u=r(101);t.exports=function(){var t=!{toString:null}.propertyIsEnumerable("toString"),n=["constructor","valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],r=function(){"use strict";return arguments.propertyIsEnumerable("length")}(),i=function(t,n){for(var r=0;r<t.length;){if(t[r]===n)return!0;r+=1}return!1};return e("function"!=typeof Object.keys||r?function(e){if(Object(e)!==e)return[];var c,s,f=[],a=r&&u(e);for(c in e)!o(c,e)||a&&"length"===c||(f[f.length]=c);if(t)for(s=n.length-1;s>=0;)c=n[s],o(c,e)&&!i(f,c)&&(f[f.length]=c),s-=1;return f}:function(t){return Object(t)!==t?[]:Object.keys(t)})}()},function(t,n,r){var e=r(2),o=r(9);t.exports=e(o)},function(t,n){t.exports=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return t&&t["@@transducer/reduced"]?t:{"@@transducer/value":t,"@@transducer/reduced":!0}}},function(t,n,r){var e=r(100);t.exports=function(t,n){return e(n,t,0)>=0}},function(t,n,r){var e=r(21),o=r(2);t.exports=o(e("slice",function(t,n,r){return Array.prototype.slice.call(r,t,n)}))},function(t,n,r){var e=r(1);t.exports=e(function(t){return function(){return t}})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n>t?n:t})},function(t,n,r){var e=r(15);t.exports=function(t,n){return function(){var r=arguments.length;if(0===r)return n();var o=arguments[r-1];return e(o)||"function"!=typeof o[t]?n.apply(this,arguments):o[t].apply(o,Array.prototype.slice.call(arguments,0,r-1))}}},function(t,n){t.exports=function(t){return"[object Function]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return"[object String]"===Object.prototype.toString.call(t)}},function(t,n,r){var e=r(0),o=r(22),u=r(6),i=r(29);t.exports=e(function(t,n){return u(t+1,function(){var r=arguments[t];if(null!=r&&o(r[n]))return r[n].apply(r,Array.prototype.slice.call(arguments,0,t));throw new TypeError(i(r)+' does not have a method named "'+n+'"')})})},function(t,n,r){var e=r(1),o=r(15),u=r(23);t.exports=e(function(t){return!!o(t)||!!t&&("object"==typeof t&&(!u(t)&&(1===t.nodeType?!!t.length:0===t.length||t.length>0&&(t.hasOwnProperty(0)&&t.hasOwnProperty(t.length-1)))))})},function(t,n,r){var e=r(0),o=r(23);t.exports=e(function(t,n){var r=t<0?n.length+t:t;return o(n)?n.charAt(r):n[r]})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=n,e=0;e<t.length;){if(null==r)return;r=r[t[e]],e+=1}return r})},function(t,n,r){var e=r(0),o=r(8),u=r(63);t.exports=e(function(t,n){return o(u(t),n)})},function(t,n,r){var e=r(1),o=r(229);t.exports=e(function(t){return o(t,[])})},function(t,n,r){"use strict";var e=r(3),o=e.anyPass,u=r(22),i=r(48),c=r(46);t.exports=o([u,i,c])},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(49);t.exports=o(u)},function(t,n,r){"use strict";var e=r(60);t.exports=e},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Number(t)+Number(n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){var e={};for(var o in r)e[o]=r[o];return e[t]=n,e})},function(t,n,r){var e=r(1),o=r(6);t.exports=e(function(t){return o(t.length,t)})},function(t,n,r){var e=r(1),o=r(35);t.exports=e(function(t){return o(function(n,r){var e=Array.prototype.slice.call(arguments,0);return e[0]=r,e[1]=n,t.apply(this,e)})})},function(t,n,r){var e=r(12),o=r(38);t.exports=function t(n,r,u){return function(){for(var i=[],c=0,s=n,f=0;f<r.length||c<arguments.length;){var a;f<r.length&&(!o(r[f])||c>=arguments.length)?a=r[f]:(a=arguments[c],c+=1),i[f]=a,o(a)||(s-=1),f+=1}return s<=0?u.apply(this,i):e(s,t(n,i,u))}}},function(t,n){t.exports=function(t){return null!=t&&"object"==typeof t&&t["@@functional/placeholder"]===!0}},function(t,n){t.exports=function(t,n){for(var r=0,e=n.length,o=Array(e);r<e;)o[r]=t(n[r]),r+=1;return o}},function(t,n,r){var e=r(0),o=r(8);t.exports=e(function(t,n){return function(r){return function(e){return o(function(t){return n(t,e)},r(t(e)))}}})},function(t,n,r){var e=r(1),o=r(111);t.exports=e(function(t){return o(t.length,t)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){switch(t){case 0:return function(){return n.call(this)};case 1:return function(t){return n.call(this,t)};case 2:return function(t,r){return n.call(this,t,r)};case 3:return function(t,r,e){return n.call(this,t,r,e)};case 4:return function(t,r,e,o){return n.call(this,t,r,e,o)};case 5:return function(t,r,e,o,u){return n.call(this,t,r,e,o,u)};case 6:return function(t,r,e,o,u,i){return n.call(this,t,r,e,o,u,i)};case 7:return function(t,r,e,o,u,i,c){return n.call(this,t,r,e,o,u,i,c)};case 8:return function(t,r,e,o,u,i,c,s){return n.call(this,t,r,e,o,u,i,c,s)};case 9:return function(t,r,e,o,u,i,c,s,f){return n.call(this,t,r,e,o,u,i,c,s,f)};case 10:return function(t,r,e,o,u,i,c,s,f,a){return n.call(this,t,r,e,o,u,i,c,s,f,a)};default:throw new Error("First argument to nAry must be a non-negative integer no greater than ten")}})},function(t,n,r){var e=r(37),o=r(4),u=r(7),i=r(9),c=r(243);t.exports=e(4,[],o([],c,function(t,n,r,e){return i(function(e,o){var i=r(o);return e[i]=t(u(i,e)?e[i]:n,o),e},{},e)}))},function(t,n,r){var e=r(97),o=r(0),u=r(55);t.exports=o(function(t,n){return u(e(t),n)})},function(t,n,r){var e=r(1),o=r(23);t.exports=e(function(t){return o(t)?t.split("").reverse().join(""):Array.prototype.slice.call(t,0).reverse()})},function(t,n,r){"use strict";t.exports=function(t){return"[object AsyncFunction]"===Object.prototype.toString.call(t)}},function(t,n,r){"use strict";var e=r(3),o=e.or,u=r(152);t.exports=o(Number.isFinite,u)},function(t,n,r){"use strict";var e=r(3),o=e.or,u=r(31),i=null;try{i=new Function("return function* () {}")().constructor}catch(t){}t.exports=function(t){var n="[object AsyncFunction]"===Object.prototype.toString.call(t),r=u(i)&&t instanceof i;return o(n,r)}},function(t,n,r){"use strict";var e=r(3),o=e.equals;t.exports=o(null)},function(t,n,r){"use strict";var e=r(3),o=e.both,u=r(31),i=r(77);t.exports=o(u,i)},function(t,n,r){var e=r(10),o=r(0),u=r(9),i=r(8);t.exports=o(function(t,n){return"function"==typeof t.ap?t.ap(n):"function"==typeof t?function(r){return t(r)(n(r))}:u(function(t,r){return e(t,i(r,n))},[],t)})},function(t,n,r){var e=r(0),o=r(4),u=r(103),i=r(232),c=r(8);t.exports=e(o(["chain"],i,function(t,n){return"function"==typeof n?function(r){return t(n(r))(r)}:u(!1)(c(t,n))}))},function(t,n,r){var e=r(120),o=r(45);t.exports=function(){if(0===arguments.length)throw new Error("compose requires at least one argument");return e.apply(this,o(arguments))}},function(t,n,r){var e=r(0),o=r(15),u=r(22),i=r(29);t.exports=e(function(t,n){if(null==t||!u(t.concat))throw new TypeError(i(t)+' does not have a method named "concat"');if(o(t)&&!o(n))throw new TypeError(i(n)+" is not an array");return t.concat(n)})},function(t,n,r){var e=r(0),o=r(4),u=r(99),i=r(61),c=r(9),s=r(237),f=r(13);t.exports=e(o(["filter"],s,function(t,n){return i(n)?c(function(r,e){return t(n[e])&&(r[e]=n[e]),r},{},f(n)):u(t,n)}))},function(t,n,r){var e=r(1),o=r(59);t.exports=e(o)},function(t,n,r){var e=r(222);t.exports="function"==typeof Object.assign?Object.assign:e},function(t,n){t.exports=function(t,n,r){for(var e=0,o=r.length;e<o;){if(t(n,r[e]))return!0;e+=1}return!1}},function(t,n){t.exports=function(t){return t}},function(t,n){t.exports=function(t){return"[object Number]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return"[object Object]"===Object.prototype.toString.call(t)}},function(t,n){t.exports=function(t){return"function"==typeof t["@@transducer/step"]}},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n[t]})},function(t,n,r){var e=r(21),o=r(1),u=r(18);t.exports=o(e("tail",u(1,1/0)))},function(t,n,r){var e=r(1);t.exports=e(function(t){return null===t?"Null":void 0===t?"Undefined":Object.prototype.toString.call(t).slice(8,-1)})},function(t,n,r){var e=r(56),o=r(128);t.exports=o(e)},function(t,n,r){var e=r(58),o=r(0);t.exports=o(function(t,n){for(var r,o=0,u=n.length,i=[];o<u;)r=n[o],e(t,r,i)||(i[i.length]=r),o+=1;return i})},function(t,n,r){"use strict";var e=r(15);t.exports=e},function(t,n,r){"use strict";var e=r(3),o=e.is;t.exports=o(Boolean)},function(t,n,r){"use strict";var e=r(3),o=e.is;t.exports=o(Date)},function(t,n,r){"use strict";var e=r(3),o=e.or,u=r(153);t.exports=o(Number.isInteger,u)},function(t,n,r){"use strict";var e=r(3),o=e.or,u=r(154);t.exports=o(Number.isNaN,u)},function(t,n,r){"use strict";var e=r(3),o=e.both,u=e.anyPass,i=r(31),c=r(30),s=r(77);t.exports=o(i,u([s,c]))},function(t,n,r){"use strict";var e=r(61),o=r(3),u=o.pipe,i=o.both,c=o.equals,s=o.toString,f=o.pathSatisfies,a=r(49),p=r(50),l=r(30),v=u(s,c(s(Object))),h=f(i(l,v),["constructor"]);t.exports=function(t){if(!p(t)||!e(t))return!1;var n=Object.getPrototypeOf(t);return!!a(n)||h(n)}},function(t,n,r){"use strict";var e=r(23);t.exports=e},function(t,n,r){"use strict";var e=r(3),o=e.equals;t.exports=o(void 0)},function(t,n,r){"use strict";var e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};t.exports=function(t){return"object"===("undefined"==typeof t?"undefined":e(t))}},function(t,n,r){var e=r(10),o=r(2);t.exports=o(function(t,n,r){if(n>=r.length||n<-r.length)return r;var o=n<0?r.length:0,u=o+n,i=e(r);return i[u]=t(r[u]),i})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t&&n})},function(t,n,r){var e=r(0),o=r(4),u=r(104);t.exports=e(o(["any"],u,function(t,n){for(var r=0;r<n.length;){if(t(n[r]))return!0;r+=1}return!1}))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t.apply(this,n)})},function(t,n,r){var e=r(2),o=r(7),u=r(15),i=r(102),c=r(34);t.exports=e(function t(n,r,e){if(0===n.length)return r;var s=n[0];if(n.length>1){var f=o(s,e)?e[s]:i(n[1])?[]:{};r=t(Array.prototype.slice.call(n,1),r,f)}if(i(s)&&u(e)){var a=[].concat(e);return a[s]=r,a}return c(s,r,e)})},function(t,n,r){var e=r(12),o=r(0);t.exports=o(function(t,n){return e(t.length,function(){return t.apply(n,arguments)})})},function(t,n,r){var e=r(52),o=r(53),u=r(8);t.exports=function(){if(0===arguments.length)throw new Error("composeK requires at least one argument");var t=Array.prototype.slice.call(arguments),n=t.pop();return o(o.apply(this,u(e,t)),n)}},function(t,n,r){var e=r(0),o=r(35),u=r(42);t.exports=e(function(t,n){if(t>10)throw new Error("Constructor with greater than ten arguments");return 0===t?function(){return new n}:o(u(t,function(t,r,e,o,u,i,c,s,f,a){switch(arguments.length){case 1:return new n(t);case 2:return new n(t,r);case 3:return new n(t,r,e);case 4:return new n(t,r,e,o);case 5:return new n(t,r,e,o,u);case 6:return new n(t,r,e,o,u,i);case 7:return new n(t,r,e,o,u,i,c);case 8:return new n(t,r,e,o,u,i,c,s);case 9:return new n(t,r,e,o,u,i,c,s,f);case 10:return new n(t,r,e,o,u,i,c,s,f,a)}}))})},function(t,n,r){var e=r(0),o=r(39),u=r(6),i=r(20),c=r(28),s=r(14);t.exports=e(function(t,n){return u(s(i,0,c("length",n)),function(){var r=arguments,e=this;return t.apply(e,o(function(t){return t.apply(e,r)},n))})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return null==n||n!==n?t:n})},function(t,n,r){var e=r(17),o=r(0);t.exports=o(function(t,n){for(var r=[],o=0,u=t.length;o<u;)e(t[o],n)||e(t[o],r)||(r[r.length]=t[o]),o+=1;return r})},function(t,n,r){var e=r(58),o=r(2);t.exports=o(function(t,n,r){for(var o=[],u=0,i=n.length;u<i;)e(t,n[u],r)||e(t,n[u],o)||o.push(n[u]),u+=1;return o})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r={};for(var e in n)r[e]=n[e];return delete r[t],r})},function(t,n,r){var e=r(0),o=r(4),u=r(233),i=r(18);t.exports=e(o(["drop"],u,function(t,n){return i(Math.max(0,t),1/0,n)}))},function(t,n,r){var e=r(0),o=r(4),u=r(105),i=r(109);t.exports=e(o([],u,function(t,n){var r=[],e=1,o=n.length;if(0!==o)for(r[0]=n[0];e<o;)t(i(r),n[e])||(r[r.length]=n[e]),e+=1;return r}))},function(t,n,r){var e=r(1),o=r(101),u=r(15),i=r(61),c=r(23);t.exports=e(function(t){return null!=t&&"function"==typeof t.empty?t.empty():null!=t&&null!=t.constructor&&"function"==typeof t.constructor.empty?t.constructor.empty():u(t)?[]:c(t)?"":i(t)?{}:o(t)?function(){return arguments}():void 0})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t===n?0!==t||1/t===1/n:t!==t&&n!==n})},function(t,n,r){var e=r(96),o=r(65);t.exports=function t(n,r,u,i){var c=function(e){for(var o=r.length,c=0;c<o;){if(n===r[c])return u[c];c+=1}r[c+1]=n,u[c+1]=e;for(var s in n)e[s]=i?t(n[s],r,u,!0):n[s];return e};switch(o(n)){case"Object":return c({});case"Array":return c([]);case"Date":return new Date(n.valueOf());case"RegExp":return e(n);default:return n}}},function(t,n){t.exports=function(t){return new RegExp(t.source,(t.global?"g":"")+(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.sticky?"y":"")+(t.unicode?"u":""))}},function(t,n){t.exports=function(t){return function(){return!t.apply(this,arguments)}}},function(t,n,r){var e=r(12),o=r(0);t.exports=function(t){return o(function(n,r){return e(Math.max(0,n.length-r.length),function(){return n.apply(this,t(r,arguments))})})}},function(t,n){t.exports=function(t,n){for(var r=0,e=n.length,o=[];r<e;)t(n[r])&&(o[o.length]=n[r]),r+=1;return o}},function(t,n,r){var e=r(11);t.exports=function(t,n,r){var o,u;if("function"==typeof t.indexOf)switch(typeof n){case"number":if(0===n){for(o=1/n;r<t.length;){if(u=t[r],0===u&&1/u===o)return r;r+=1}return-1}if(n!==n){for(;r<t.length;){if(u=t[r],"number"==typeof u&&u!==u)return r;r+=1}return-1}return t.indexOf(n,r);case"string":case"boolean":case"function":case"undefined":return t.indexOf(n,r);case"object":if(null===n)return t.indexOf(n,r)}for(;r<t.length;){if(e(t[r],n))return r;r+=1}return-1}},function(t,n,r){var e=r(7);t.exports=function(){var t=Object.prototype.toString;return"[object Arguments]"===t.call(arguments)?function(n){return"[object Arguments]"===t.call(n)}:function(t){return e("callee",t)}}()},function(t,n){t.exports=Number.isInteger||function(t){return t<<0===t}},function(t,n,r){var e=r(25);t.exports=function(t){return function n(r){for(var o,u,i,c=[],s=0,f=r.length;s<f;){if(e(r[s]))for(o=t?n(r[s]):r[s],i=0,u=o.length;i<u;)c[c.length]=o[i],i+=1;else c[c.length]=r[s];s+=1}return c}}},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.any=!1}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.any||(t=this.xf["@@transducer/step"](t,!1)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)&&(this.any=!0,t=o(this.xf["@@transducer/step"](t,!0))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.pred=t,this.lastValue=void 0,this.seenFirstValue=!1}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){var r=!1;return this.seenFirstValue?this.pred(this.lastValue,n)&&(r=!0):this.seenFirstValue=!0,this.lastValue=n,r?t:this.xf["@@transducer/step"](t,n)},e(function(n,r){return new t(n,r)})}()},function(t,n){t.exports=function(){function t(t){this.f=t}return t.prototype["@@transducer/init"]=function(){throw new Error("init not implemented on XWrap")},t.prototype["@@transducer/result"]=function(t){return t},t.prototype["@@transducer/step"]=function(t,n){return this.f(t,n)},function(n){return new t(n)}}()},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return null!=n&&n.constructor===t||n instanceof t})},function(t,n,r){var e=r(1),o=r(86);t.exports=e(function(t){return o(function(){return Array.prototype.slice.call(arguments,0)},t)})},function(t,n,r){var e=r(26);t.exports=e(-1)},function(t,n,r){var e=r(1),o=r(60);t.exports=e(function(t){return null!=t&&o(t.length)?t.length:NaN})},function(t,n,r){var e=r(0),o=r(9),u=r(51),i=r(6),c=r(8);t.exports=e(function(t,n){var r=i(t,n);return i(t,function(){return o(u,c(r,arguments[0]),Array.prototype.slice.call(arguments,1))})})},function(t,n,r){var e=r(1),o=r(125);t.exports=e(function(t){return o(t)/t.length})},function(t,n,r){var e=r(2),o=r(7);t.exports=e(function(t,n,r){var e,u={};for(e in n)o(e,n)&&(u[e]=o(e,r)?t(e,n[e],r[e]):n[e]);for(e in r)o(e,r)&&!o(e,u)&&(u[e]=r[e]);return u})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t*n})},function(t,n,r){var e=r(1);t.exports=e(function(t){return!t})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r={};return r[t]=n,r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t||n})},function(t,n,r){var e=r(2);t.exports=function(){var t=function(n){return{value:n,map:function(r){return t(r(n))}}};return e(function(n,r,e){return n(function(n){return t(r(n))})(e).value})}()},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r={},e=0,o=t.length;e<o;){var u=t[e];r[u]=n[u],e+=1}return r})},function(t,n,r){var e=r(12),o=r(224),u=r(14),i=r(64);t.exports=function(){if(0===arguments.length)throw new Error("pipe requires at least one argument");return e(arguments[0].length,u(o,arguments[0],i(arguments)))}},function(t,n,r){var e=r(12),o=r(225),u=r(14),i=r(64);t.exports=function(){if(0===arguments.length)throw new Error("pipeP requires at least one argument");return e(arguments[0].length,u(o,arguments[0],i(arguments)))}},function(t,n,r){var e=r(10),o=r(0);t.exports=o(function(t,n){return e([t],n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=r.length-1;e>=0;)n=t(r[e],n),e-=1;return n})},function(t,n,r){var e=r(0),o=r(51),u=r(8),i=r(122),c=r(123);t.exports=e(function(t,n){return"function"==typeof n.sequence?n.sequence(t):c(function(t,n){return o(u(i,t),n)},t([]),n)})},function(t,n,r){var e=r(33),o=r(14);t.exports=o(e,0)},function(t,n,r){var e=r(0),o=r(4),u=r(244),i=r(18);t.exports=e(o(["take"],u,function(t,n){return i(0,t<0?1/0:t,n)}))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r,e=Number(n),o=0;if(e<0||isNaN(e))throw new RangeError("n must be a non-negative number");for(r=new Array(e);o<e;)r[o]=t(o),o+=1;return r})},function(t,n,r){var e=r(212),o=r(0);t.exports=o(function(t,n){for(var r,o,u=new e,i=[],c=0;c<n.length;)o=n[c],r=t(o),u.add(r)&&i.push(o),c+=1;return i})},function(t,n,r){var e=r(2),o=r(78),u=r(19);t.exports=e(function(t,n,r){return o(u(n),t,r)})},function(t,n,r){var e=r(0),o=r(6);t.exports=e(function(t,n){return o(n.length,function(){for(var r=[],e=0;e<n.length;)r.push(n[e].call(this,arguments[e])),e+=1;return t.apply(this,r.concat(Array.prototype.slice.call(arguments,n.length)))})})},function(t,n,r){var e=r(1),o=r(13);t.exports=e(function(t){for(var n=o(t),r=n.length,e=[],u=0;u<r;)e[u]=t[n[u]],u+=1;return e})},function(t,n,r){var e=r(0),o=r(7);t.exports=e(function(t,n){for(var r in t)if(o(r,t)&&!t[r](n[r]))return!1;return!0})},function(t,n,r){"use strict";var e=r(3),o=e.anyPass,u=e.isEmpty,i=e.isNil;t.exports=o([i,u])},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(68);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=e.isArrayLike;t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(46);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(69);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(70);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=e.isEmpty;t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(47);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(30);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(48);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(71);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(72);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.isNil,u=e.complement;t.exports=u(o)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(32);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(73);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(50);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(74);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(75);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.complement,u=r(76);t.exports=o(u)},function(t,n,r){"use strict";var e=r(3),o=e.both,u=r(32);t.exports=o(u,isFinite)},function(t,n,r){"use strict";var e=r(3),o=e.both,u=e.converge,i=e.equals,c=e.identity,s=r(47);t.exports=o(s,u(i,[Math.floor,c]))},function(t,n,r){"use strict";var e=r(3),o=e.both,u=r(32);t.exports=o(u,isNaN)},function(t,n,r){var e=r(19);t.exports=e(!1)},function(t,n,r){var e=r(19);t.exports=e(!0)},function(t,n){t.exports={"@@functional/placeholder":!0}},function(t,n,r){var e=r(10),o=r(1),u=r(6);t.exports=o(function(t){return u(t.length,function(){var n=0,r=arguments[0],o=arguments[arguments.length-1],u=Array.prototype.slice.call(arguments,0);return u[0]=function(){var t=r.apply(this,e(arguments,[n,o]));return n+=1,t},t.apply(this,u)})})},function(t,n,r){var e=r(0),o=r(4),u=r(230);t.exports=e(o(["all"],u,function(t,n){for(var r=0;r<n.length;){if(!t(n[r]))return!1;r+=1}return!0}))},function(t,n,r){var e=r(1),o=r(6),u=r(20),i=r(28),c=r(14);t.exports=e(function(t){return o(c(u,0,i("length",t)),function(){for(var n=0,r=t.length;n<r;){if(!t[n].apply(this,arguments))return!1;n+=1}return!0})})},function(t,n,r){var e=r(1),o=r(6),u=r(20),i=r(28),c=r(14);t.exports=e(function(t){return o(c(u,0,i("length",t)),function(){for(var n=0,r=t.length;n<r;){if(t[n].apply(this,arguments))return!0;n+=1}return!1})})},function(t,n,r){var e=r(213),o=r(0),u=r(4),i=r(231);t.exports=o(u([],i,e))},function(t,n,r){var e=r(10),o=r(0);t.exports=o(function(t,n){return e(n,[t])})},function(t,n,r){var e=r(1),o=r(81),u=r(6),i=r(8),c=r(20),s=r(28),f=r(14),a=r(131);t.exports=e(function t(n){return n=i(function(n){return"function"==typeof n?n:t(n)},n),u(f(c,0,s("length",a(n))),function(){var t=arguments;return i(function(n){return o(n,t)},n)})})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){var e=t(n),o=t(r);return e<o?-1:e>o?1:0})},function(t,n,r){var e=r(1),o=r(42);t.exports=e(function(t){return o(2,t)})},function(t,n,r){var e=r(0),o=r(22),u=r(79),i=r(41);t.exports=e(function(t,n){return o(t)?function(){return t.apply(this,arguments)&&n.apply(this,arguments)}:i(u)(t,n)})},function(t,n,r){var e=r(35);t.exports=e(function(t){return t.apply(this,Array.prototype.slice.call(arguments,1))})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){if(t>n)throw new Error("min must not be greater than max in clamp(min, max, value)");return r<t?t:r>n?n:r})},function(t,n,r){var e=r(95),o=r(1);t.exports=o(function(t){return null!=t&&"function"==typeof t.clone?t.clone():e(t,[],[],!0)})},function(t,n,r){var e=r(1);t.exports=e(function(t){return function(n,r){return t(n,r)?-1:t(r,n)?1:0}})},function(t,n,r){var e=r(41),o=r(115);t.exports=e(o)},function(t,n,r){var e=r(121),o=r(45);t.exports=function(){if(0===arguments.length)throw new Error("composeP requires at least one argument");return e.apply(this,o(arguments))}},function(t,n,r){var e=r(12),o=r(1),u=r(8),i=r(20),c=r(14);t.exports=o(function(t){var n=c(i,0,u(function(t){return t[0].length},t));return e(n,function(){for(var n=0;n<t.length;){if(t[n][0].apply(this,arguments))return t[n][1].apply(this,arguments);n+=1}})})},function(t,n,r){var e=r(1),o=r(85);t.exports=e(function(t){return o(t.length,t)})},function(t,n,r){var e=r(17),o=r(0);t.exports=o(e)},function(t,n,r){var e=r(43);t.exports=e(function(t,n){return t+1},0)},function(t,n,r){var e=r(33);t.exports=e(-1)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){ | ||
var e=t(n),o=t(r);return e>o?-1:e<o?1:0})},function(t,n,r){var e=r(0),o=r(34),u=r(90);t.exports=e(function t(n,r){switch(n.length){case 0:return r;case 1:return u(n[0],r);default:var e=n[0],i=Array.prototype.slice.call(n,1);return null==r[e]?r:o(e,t(i,r[e]),r)}})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t/n})},function(t,n,r){var e=r(0),o=r(4),u=r(215),i=r(234);t.exports=e(o([],i,u))},function(t,n,r){var e=r(0),o=r(4),u=r(216),i=r(235);t.exports=e(o([],i,u))},function(t,n,r){var e=r(1),o=r(4),u=r(105),i=r(92),c=r(11);t.exports=e(o([],u(c),i(c)))},function(t,n,r){var e=r(0),o=r(4),u=r(236);t.exports=e(o(["dropWhile"],u,function(t,n){for(var r=0,e=n.length;r<e&&t(n[r]);)r+=1;return Array.prototype.slice.call(n,r)}))},function(t,n,r){var e=r(0),o=r(22),u=r(41),i=r(117);t.exports=e(function(t,n){return o(t)?function(){return t.apply(this,arguments)||n.apply(this,arguments)}:u(i)(t,n)})},function(t,n,r){var e=r(2),o=r(11);t.exports=e(function(t,n,r){return o(t(n),t(r))})},function(t,n,r){var e=r(2),o=r(11);t.exports=e(function(t,n,r){return o(n[t],r[t])})},function(t,n,r){var e=r(0);t.exports=e(function t(n,r){var e,o,u,i={};for(o in r)e=n[o],u=typeof e,i[o]="function"===u?e(r[o]):e&&"object"===u?t(e,r[o]):r[o];return i})},function(t,n,r){var e=r(0),o=r(4),u=r(238);t.exports=e(o(["find"],u,function(t,n){for(var r=0,e=n.length;r<e;){if(t(n[r]))return n[r];r+=1}}))},function(t,n,r){var e=r(0),o=r(4),u=r(239);t.exports=e(o([],u,function(t,n){for(var r=0,e=n.length;r<e;){if(t(n[r]))return r;r+=1}return-1}))},function(t,n,r){var e=r(0),o=r(4),u=r(240);t.exports=e(o([],u,function(t,n){for(var r=n.length-1;r>=0;){if(t(n[r]))return n[r];r-=1}}))},function(t,n,r){var e=r(0),o=r(4),u=r(241);t.exports=e(o([],u,function(t,n){for(var r=n.length-1;r>=0;){if(t(n[r]))return r;r-=1}return-1}))},function(t,n,r){var e=r(1),o=r(103);t.exports=e(o(!0))},function(t,n,r){var e=r(21),o=r(0);t.exports=o(e("forEach",function(t,n){for(var r=n.length,e=0;e<r;)t(n[e]),e+=1;return n}))},function(t,n,r){var e=r(0),o=r(13);t.exports=e(function(t,n){for(var r=o(n),e=0;e<r.length;){var u=r[e];t(n[u],u,n),e+=1}return n})},function(t,n,r){var e=r(1);t.exports=e(function(t){for(var n={},r=0;r<t.length;)n[t[r][0]]=t[r][1],r+=1;return n})},function(t,n,r){var e=r(21),o=r(0),u=r(43);t.exports=o(e("groupBy",u(function(t,n){return null==t&&(t=[]),t.push(n),t},null)))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=[],e=0,o=n.length;e<o;){for(var u=e+1;u<o&&t(n[e],n[u]);)u+=1;r.push(n.slice(e,u)),e=u}return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t>n})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t>=n})},function(t,n,r){var e=r(0),o=r(7);t.exports=e(o)},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t in n})},function(t,n,r){var e=r(26);t.exports=e(0)},function(t,n,r){var e=r(2),o=r(6);t.exports=e(function(t,n,r){return o(Math.max(t.length,n.length,r.length),function(){return t.apply(this,arguments)?n.apply(this,arguments):r.apply(this,arguments)})})},function(t,n,r){var e=r(33);t.exports=e(1)},function(t,n,r){var e=r(43);t.exports=e(function(t,n){return n},null)},function(t,n,r){var e=r(0),o=r(100),u=r(15);t.exports=e(function(t,n){return"function"!=typeof n.indexOf||u(n)?o(n,t,0):n.indexOf(t)})},function(t,n,r){var e=r(18);t.exports=e(0,-1)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){t=t<r.length&&t>=0?t:r.length;var e=Array.prototype.slice.call(r,0);return e.splice(t,0,n),e})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t=t<r.length&&t>=0?t:r.length,[].concat(Array.prototype.slice.call(r,0,t),n,Array.prototype.slice.call(r,t))})},function(t,n,r){var e=r(17);t.exports=function(){function t(){this._nativeSet="function"==typeof Set?new Set:null,this._items={}}function n(t,n,r){var o,u,i=typeof t;switch(i){case"string":case"number":return 0===t&&1/t===-(1/0)?!!r._items["-0"]||(n&&(r._items["-0"]=!0),!1):null!==r._nativeSet?n?(o=r._nativeSet.size,r._nativeSet.add(t),u=r._nativeSet.size,u===o):r._nativeSet.has(t):i in r._items?t in r._items[i]||(n&&(r._items[i][t]=!0),!1):(n&&(r._items[i]={},r._items[i][t]=!0),!1);case"boolean":if(i in r._items){var c=t?1:0;return!!r._items[i][c]||(n&&(r._items[i][c]=!0),!1)}return n&&(r._items[i]=t?[!1,!0]:[!0,!1]),!1;case"function":return null!==r._nativeSet?n?(o=r._nativeSet.size,r._nativeSet.add(t),u=r._nativeSet.size,u===o):r._nativeSet.has(t):i in r._items?!!e(t,r._items[i])||(n&&r._items[i].push(t),!1):(n&&(r._items[i]=[t]),!1);case"undefined":return!!r._items[i]||(n&&(r._items[i]=!0),!1);case"object":if(null===t)return!!r._items.null||(n&&(r._items.null=!0),!1);default:return i=Object.prototype.toString.call(t),i in r._items?!!e(t,r._items[i])||(n&&r._items[i].push(t),!1):(n&&(r._items[i]=[t]),!1)}}return t.prototype.add=function(t){return!n(t,!0,this)},t.prototype.has=function(t){return n(t,!1,this)},t}()},function(t,n){t.exports=function(t,n){for(var r=0,e=n.length-(t-1),o=new Array(e>=0?e:0);r<e;)o[r]=Array.prototype.slice.call(n,r,r+t),r+=1;return o}},function(t,n){t.exports=function(t){for(var n,r=[];!(n=t.next()).done;)r.push(n.value);return r}},function(t,n,r){var e=r(126);t.exports=function(t,n){return e(t<n.length?n.length-t:0,n)}},function(t,n){t.exports=function(t,n){for(var r=n.length-1;r>=0&&t(n[r]);)r-=1;return Array.prototype.slice.call(n,0,r+1)}},function(t,n,r){var e=r(214),o=r(220),u=r(7),i=r(94),c=r(13),s=r(65);t.exports=function t(n,r,f,a){if(i(n,r))return!0;if(s(n)!==s(r))return!1;if(null==n||null==r)return!1;if("function"==typeof n.equals||"function"==typeof r.equals)return"function"==typeof n.equals&&n.equals(r)&&"function"==typeof r.equals&&r.equals(n);switch(s(n)){case"Arguments":case"Array":case"Object":if("function"==typeof n.constructor&&"Promise"===o(n.constructor))return n===r;break;case"Boolean":case"Number":case"String":if(typeof n!=typeof r||!i(n.valueOf(),r.valueOf()))return!1;break;case"Date":if(!i(n.valueOf(),r.valueOf()))return!1;break;case"Error":return n.name===r.name&&n.message===r.message;case"RegExp":if(n.source!==r.source||n.global!==r.global||n.ignoreCase!==r.ignoreCase||n.multiline!==r.multiline||n.sticky!==r.sticky||n.unicode!==r.unicode)return!1;break;case"Map":case"Set":if(!t(e(n.entries()),e(r.entries()),f,a))return!1;break;case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":break;case"ArrayBuffer":break;default:return!1}var p=c(n);if(p.length!==c(r).length)return!1;for(var l=f.length-1;l>=0;){if(f[l]===n)return a[l]===r;l-=1}for(f.push(n),a.push(r),l=p.length-1;l>=0;){var v=p[l];if(!u(v,r)||!t(r[v],n[v],f,a))return!1;l-=1}return f.pop(),a.pop(),!0}},function(t,n,r){var e=r(219),o=r(9),u=r(5),i=r(25);t.exports=function(){var t=function(t){return{"@@transducer/init":u.init,"@@transducer/result":function(n){return t["@@transducer/result"](n)},"@@transducer/step":function(n,r){var o=t["@@transducer/step"](n,r);return o["@@transducer/reduced"]?e(o):o}}};return function(n){var r=t(n);return{"@@transducer/init":u.init,"@@transducer/result":function(t){return r["@@transducer/result"](t)},"@@transducer/step":function(t,n){return i(n)?o(r,t,n):o(r,t,[n])}}}}()},function(t,n){t.exports=function(t){return{"@@transducer/value":t,"@@transducer/reduced":!0}}},function(t,n){t.exports=function(t){var n=String(t).match(/^function (\w*)/);return null==n?"":n[1]}},function(t,n){t.exports=function(t){return"[object RegExp]"===Object.prototype.toString.call(t)}},function(t,n,r){var e=r(7);t.exports=function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var n=Object(t),r=1,o=arguments.length;r<o;){var u=arguments[r];if(null!=u)for(var i in u)e(i,u)&&(n[i]=u[i]);r+=1}return n}},function(t,n){t.exports=function(t){return[t]}},function(t,n){t.exports=function(t,n){return function(){return n.call(this,t.apply(this,arguments))}}},function(t,n){t.exports=function(t,n){return function(){var r=this;return t.apply(r,arguments).then(function(t){return n.call(r,t)})}}},function(t,n){t.exports=function(t){var n=t.replace(/\\/g,"\\\\").replace(/[\b]/g,"\\b").replace(/\f/g,"\\f").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\t/g,"\\t").replace(/\v/g,"\\v").replace(/\0/g,"\\0");return'"'+n.replace(/"/g,'\\"')+'"'}},function(t,n,r){var e=r(57),o=r(59),u=r(62),i=r(25),c=r(116);t.exports=function(){var t={"@@transducer/init":Array,"@@transducer/step":function(t,n){return t.push(n),t},"@@transducer/result":o},n={"@@transducer/init":String,"@@transducer/step":function(t,n){return t+n},"@@transducer/result":o},r={"@@transducer/init":Object,"@@transducer/step":function(t,n){return e(t,i(n)?c(n[0],n[1]):n)},"@@transducer/result":o};return function(e){if(u(e))return e;if(i(e))return t;if("string"==typeof e)return n;if("object"==typeof e)return r;throw new Error("Cannot create transformer for "+e)}}()},function(t,n){t.exports=function(){var t=function(t){return(t<10?"0":"")+t};return"function"==typeof Date.prototype.toISOString?function(t){return t.toISOString()}:function(n){return n.getUTCFullYear()+"-"+t(n.getUTCMonth()+1)+"-"+t(n.getUTCDate())+"T"+t(n.getUTCHours())+":"+t(n.getUTCMinutes())+":"+t(n.getUTCSeconds())+"."+(n.getUTCMilliseconds()/1e3).toFixed(3).slice(2,5)+"Z"}}()},function(t,n,r){var e=r(17),o=r(39),u=r(226),i=r(228),c=r(13),s=r(44);t.exports=function t(n,r){var f=function(o){var u=r.concat([n]);return e(o,u)?"<Circular>":t(o,u)},a=function(t,n){return o(function(n){return u(n)+": "+f(t[n])},n.slice().sort())};switch(Object.prototype.toString.call(n)){case"[object Arguments]":return"(function() { return arguments; }("+o(f,n).join(", ")+"))";case"[object Array]":return"["+o(f,n).concat(a(n,s(function(t){return/^\d+$/.test(t)},c(n)))).join(", ")+"]";case"[object Boolean]":return"object"==typeof n?"new Boolean("+f(n.valueOf())+")":n.toString();case"[object Date]":return"new Date("+(isNaN(n.valueOf())?f(NaN):u(i(n)))+")";case"[object Null]":return"null";case"[object Number]":return"object"==typeof n?"new Number("+f(n.valueOf())+")":1/n===-(1/0)?"-0":n.toString(10);case"[object String]":return"object"==typeof n?"new String("+f(n.valueOf())+")":u(n);case"[object Undefined]":return"undefined";default:if("function"==typeof n.toString){var p=n.toString();if("[object Object]"!==p)return p}return"{"+a(n,c(n)).join(", ")+"}"}}},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.all=!0}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.all&&(t=this.xf["@@transducer/step"](t,!0)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)||(this.all=!1,t=o(this.xf["@@transducer/step"](t,!1))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(10),o=r(0),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.pos=0,this.full=!1,this.acc=new Array(t)}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.acc=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.store(n),this.full?this.xf["@@transducer/step"](t,this.getCopy()):t},t.prototype.store=function(t){this.acc[this.pos]=t,this.pos+=1,this.pos===this.acc.length&&(this.pos=0,this.full=!0)},t.prototype.getCopy=function(){return e(Array.prototype.slice.call(this.acc,this.pos),Array.prototype.slice.call(this.acc,0,this.pos))},o(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(218),u=r(8);t.exports=e(function(t,n){return u(t,o(n))})},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.n=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){return this.n>0?(this.n-=1,t):this.xf["@@transducer/step"](t,n)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.pos=0,this.full=!1,this.acc=new Array(t)}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=function(t){return this.acc=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.full&&(t=this.xf["@@transducer/step"](t,this.acc[this.pos])),this.store(n),t},t.prototype.store=function(t){this.acc[this.pos]=t,this.pos+=1,this.pos===this.acc.length&&(this.pos=0,this.full=!0)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(9),u=r(5);t.exports=function(){function t(t,n){this.f=t,this.retained=[],this.xf=n}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.retained=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)?this.retain(t,n):this.flush(t,n)},t.prototype.flush=function(t,n){return t=o(this.xf["@@transducer/step"],t,this.retained),this.retained=[],this.xf["@@transducer/step"](t,n)},t.prototype.retain=function(t,n){return this.retained.push(n),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){if(this.f){if(this.f(n))return t;this.f=null}return this.xf["@@transducer/step"](t,n)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){return this.f(n)?this.xf["@@transducer/step"](t,n):t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.found=!1}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.found||(t=this.xf["@@transducer/step"](t,void 0)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)&&(this.found=!0,t=o(this.xf["@@transducer/step"](t,n))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.idx=-1,this.found=!1}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){return this.found||(t=this.xf["@@transducer/step"](t,-1)),this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){return this.idx+=1,this.f(n)&&(this.found=!0,t=o(this.xf["@@transducer/step"](t,this.idx))),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=function(t){return this.xf["@@transducer/result"](this.xf["@@transducer/step"](t,this.last))},t.prototype["@@transducer/step"]=function(t,n){return this.f(n)&&(this.last=n),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t,this.idx=-1,this.lastIdx=-1}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=function(t){return this.xf["@@transducer/result"](this.xf["@@transducer/step"](t,this.lastIdx))},t.prototype["@@transducer/step"]=function(t,n){return this.idx+=1,this.f(n)&&(this.lastIdx=this.idx),t},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=o.init,t.prototype["@@transducer/result"]=o.result,t.prototype["@@transducer/step"]=function(t,n){return this.xf["@@transducer/step"](t,this.f(n))},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(37),o=r(7),u=r(5);t.exports=function(){function t(t,n,r,e){this.valueFn=t,this.valueAcc=n,this.keyFn=r,this.xf=e,this.inputs={}}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=function(t){var n;for(n in this.inputs)if(o(n,this.inputs)&&(t=this.xf["@@transducer/step"](t,this.inputs[n]),t["@@transducer/reduced"])){t=t["@@transducer/value"];break}return this.inputs=null,this.xf["@@transducer/result"](t)},t.prototype["@@transducer/step"]=function(t,n){var r=this.keyFn(n);return this.inputs[r]=this.inputs[r]||[r,this.valueAcc],this.inputs[r][1]=this.valueFn(this.inputs[r][1],n),t},e(4,[],function(n,r,e,o){return new t(n,r,e,o)})}()},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.n=t,this.i=0}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=u.result,t.prototype["@@transducer/step"]=function(t,n){this.i+=1;var r=0===this.n?t:this.xf["@@transducer/step"](t,n);return this.i>=this.n?o(r):r},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(0),o=r(16),u=r(5);t.exports=function(){function t(t,n){this.xf=n,this.f=t}return t.prototype["@@transducer/init"]=u.init,t.prototype["@@transducer/result"]=u.result,t.prototype["@@transducer/step"]=function(t,n){return this.f(n)?this.xf["@@transducer/step"](t,n):o(t)},e(function(n,r){return new t(n,r)})}()},function(t,n,r){var e=r(17),o=r(0),u=r(99),i=r(36),c=r(66);t.exports=o(function(t,n){var r,o;return t.length>n.length?(r=t,o=n):(r=n,o=t),c(u(i(e)(r),o))})},function(t,n,r){var e=r(58),o=r(2),u=r(67);t.exports=o(function(t,n,r){var o,i;n.length>r.length?(o=n,i=r):(o=r,i=n);for(var c=[],s=0;s<i.length;)e(t,i[s],o)&&(c[c.length]=i[s]),s+=1;return u(t,c)})},function(t,n,r){var e=r(21),o=r(0);t.exports=o(e("intersperse",function(t,n){for(var r=[],e=0,o=n.length;e<o;)e===o-1?r.push(n[e]):r.push(n[e],t),e+=1;return r}))},function(t,n,r){var e=r(95),o=r(2),u=r(62),i=r(9),c=r(227);t.exports=o(function(t,n,r){return u(t)?i(n(t),t["@@transducer/init"](),r):i(n(c(t)),e(t,[],[],!1),r)})},function(t,n,r){var e=r(1),o=r(7),u=r(13);t.exports=e(function(t){for(var n=u(t),r=n.length,e=0,i={};e<r;){var c=n[e],s=t[c],f=o(s,i)?i[s]:i[s]=[];f[f.length]=c,e+=1}return i})},function(t,n,r){var e=r(1),o=r(13);t.exports=e(function(t){for(var n=o(t),r=n.length,e=0,u={};e<r;){var i=n[e];u[t[i]]=i,e+=1}return u})},function(t,n,r){var e=r(1),o=r(93),u=r(11);t.exports=e(function(t){return null!=t&&u(t,o(t))})},function(t,n,r){var e=r(1);t.exports=e(function(t){return null==t})},function(t,n,r){var e=r(24);t.exports=e(1,"join")},function(t,n,r){var e=r(1);t.exports=e(function(t){var n,r=[];for(n in t)r[r.length]=n;return r})},function(t,n,r){var e=r(0),o=r(15),u=r(11);t.exports=e(function(t,n){if("function"!=typeof n.lastIndexOf||o(n)){for(var r=n.length-1;r>=0;){if(u(n[r],t))return r;r-=1}return-1}return n.lastIndexOf(t)})},function(t,n,r){var e=r(1),o=r(40),u=r(26),i=r(129);t.exports=e(function(t){return o(u(t),i(t))})},function(t,n,r){var e=r(1),o=r(82),u=r(40),i=r(27);t.exports=e(function(t){return u(i(t),o(t))})},function(t,n,r){var e=r(1),o=r(34),u=r(40),i=r(63);t.exports=e(function(t){return u(i(t),o(t))})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t<n})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t<=n})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=0,o=r.length,u=[],i=[n];e<o;)i=t(i[0],r[e]),u[e]=i[1],e+=1;return[i[0],u]})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=r.length-1,o=[],u=[n];e>=0;)u=t(r[e],u[0]),o[e]=u[1],e-=1;return[o,u[0]]})},function(t,n,r){var e=r(0),o=r(9),u=r(13);t.exports=e(function(t,n){return o(function(r,e){return r[e]=t(n[e],e,n),r},{},u(n))})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n.match(t)||[]})},function(t,n,r){var e=r(0),o=r(102);t.exports=e(function(t,n){return o(t)?!o(n)||n<1?NaN:(t%n+n)%n:NaN})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)>t(n)?r:n})},function(t,n,r){var e=r(1),o=r(112);t.exports=e(function(t){var n=t.length;if(0===n)return NaN;var r=2-n%2,e=(n-r)/2;return o(Array.prototype.slice.call(t,0).sort(function(t,n){return t<n?-1:t>n?1:0}).slice(e,e+r))})},function(t,n,r){var e=r(12),o=r(1),u=r(7),i=r(29);t.exports=o(function(t){var n={};return e(t.length,function(){var r=i(arguments);return u(r,n)||(n[r]=t.apply(this,arguments)),n[r]})})},function(t,n,r){var e=r(57),o=r(0);t.exports=o(function(t,n){return e({},t,n)})},function(t,n,r){var e=r(57),o=r(1);t.exports=o(function(t){return e.apply(null,[{}].concat(t))})},function(t,n,r){var e=r(2),o=r(113);t.exports=e(function(t,n,r){return o(function(n,r,e){return t(r,e)},n,r)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return n<t?n:t})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)<t(n)?r:n})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t%n})},function(t,n,r){var e=r(1);t.exports=e(function(t){return-t})},function(t,n,r){var e=r(97),o=r(0),u=r(4),i=r(104),c=r(80);t.exports=o(e(u(["any"],i,c)))},function(t,n,r){var e=r(1),o=r(6),u=r(26);t.exports=e(function(t){var n=t<0?1:t+1;return o(n,function(){return u(t,arguments)})})},function(t,n,r){var e=r(1),o=r(223);t.exports=e(o)},function(t,n,r){var e=r(17),o=r(0);t.exports=o(function(t,n){var r={};for(var o in n)e(o,t)||(r[o]=n[o]);return r})},function(t,n,r){var e=r(12),o=r(1);t.exports=o(function(t){var n,r=!1;return e(t.length,function(){return r?n:(r=!0,n=t.apply(this,arguments))})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return[t,n]})},function(t,n,r){var e=r(10),o=r(98);t.exports=o(e)},function(t,n,r){var e=r(10),o=r(98),u=r(36);t.exports=o(u(e))},function(t,n,r){var e=r(55),o=r(108),u=r(44);t.exports=o([e,u])},function(t,n,r){var e=r(2),o=r(11),u=r(27);t.exports=e(function(t,n,r){return o(u(t,r),n)})},function(t,n,r){var e=r(2),o=r(87),u=r(27);t.exports=e(function(t,n,r){return o(t,u(n,r))})},function(t,n,r){var e=r(2),o=r(27);t.exports=e(function(t,n,r){return n.length>0&&t(o(n,r))})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r={},e=0;e<t.length;)t[e]in n&&(r[t[e]]=n[t[e]]),e+=1;return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){var r={};for(var e in n)t(n[e],e,n)&&(r[e]=n[e]);return r})},function(t,n,r){var e=r(84),o=r(45);t.exports=function(){if(0===arguments.length)throw new Error("pipeK requires at least one argument");return e.apply(this,o(arguments))}},function(t,n,r){var e=r(114),o=r(14);t.exports=o(e,1)},function(t,n,r){var e=r(39),o=r(56),u=r(119),i=r(130);t.exports=i(e,[u,o])},function(t,n,r){var e=r(2),o=r(11);t.exports=e(function(t,n,r){return o(n,r[t])})},function(t,n,r){var e=r(2),o=r(107);t.exports=e(function(t,n,r){return o(t,r[n])})},function(t,n,r){var e=r(2),o=r(7);t.exports=e(function(t,n,r){return null!=r&&o(n,r)?r[n]:t})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r[n])})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=t.length,e=[],o=0;o<r;)e[o]=n[t[o]],o+=1;return e})},function(t,n,r){var e=r(0),o=r(60);t.exports=e(function(t,n){if(!o(t)||!o(n))throw new TypeError("Both arguments to range must be numbers");for(var r=[],e=t;e<n;)r.push(e),e+=1;return r})},function(t,n,r){var e=r(37),o=r(9),u=r(16);t.exports=e(4,[],function(t,n,r,e){return o(function(r,e){return t(r,e)?n(r,e):u(r)},r,e)})},function(t,n,r){var e=r(1),o=r(16);t.exports=e(o)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){var e=Array.prototype.slice.call(r,0);return e.splice(t,n),e})},function(t,n,r){var e=r(0),o=r(19),u=r(127);t.exports=e(function(t,n){return u(o(t),n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return r.replace(t,n)})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=0,o=r.length,u=[n];e<o;)n=t(n,r[e]),u[e+1]=n,e+=1;return u})},function(t,n,r){var e=r(2),o=r(19),u=r(118);t.exports=e(function(t,n,r){return u(t,o(n),r)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Array.prototype.slice.call(n,0).sort(t)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Array.prototype.slice.call(n,0).sort(function(n,r){var e=t(n),o=t(r);return e<o?-1:e>o?1:0})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Array.prototype.slice.call(n,0).sort(function(n,r){for(var e=0,o=0;0===e&&o<t.length;)e=t[o](n,r),o+=1;return e})})},function(t,n,r){var e=r(24);t.exports=e(1,"split")},function(t,n,r){var e=r(0),o=r(110),u=r(18);t.exports=e(function(t,n){return[u(0,t,n),u(t,o(n),n)]})},function(t,n,r){var e=r(0),o=r(18);t.exports=e(function(t,n){if(t<=0)throw new Error("First argument to splitEvery must be a positive integer");for(var r=[],e=0;e<n.length;)r.push(o(e,e+=t,n));return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=0,e=n.length,o=[];r<e&&!t(n[r]);)o.push(n[r]),r+=1;return[o,Array.prototype.slice.call(n,r)]})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return Number(t)-Number(n)})},function(t,n,r){var e=r(0),o=r(54),u=r(88);t.exports=e(function(t,n){return o(u(t,n),u(n,t))})},function(t,n,r){var e=r(2),o=r(54),u=r(89);t.exports=e(function(t,n,r){return o(u(t,n,r),u(t,r,n))})},function(t,n,r){var e=r(0),o=r(91);t.exports=e(function(t,n){return o(t>=0?n.length-t:0,n)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=n.length-1;r>=0&&t(n[r]);)r-=1;return Array.prototype.slice.call(n,r+1)})},function(t,n,r){var e=r(0),o=r(4),u=r(245);t.exports=e(o(["takeWhile"],u,function(t,n){for(var r=0,e=n.length;r<e&&t(n[r]);)r+=1;return Array.prototype.slice.call(n,0,r)}))},function(t,n,r){var e=r(0);t.exports=e(function(t,n){return t(n),n})},function(t,n,r){var e=r(96),o=r(0),u=r(221),i=r(29);t.exports=o(function(t,n){if(!u(t))throw new TypeError("‘test’ requires a value of type RegExp as its first argument; received "+i(t));return e(t).test(n)})},function(t,n,r){var e=r(24);t.exports=e(0,"toLowerCase")},function(t,n,r){var e=r(1),o=r(7);t.exports=e(function(t){var n=[];for(var r in t)o(r,t)&&(n[n.length]=[r,t[r]]);return n})},function(t,n,r){var e=r(1);t.exports=e(function(t){var n=[];for(var r in t)n[n.length]=[r,t[r]];return n})},function(t,n,r){var e=r(24);t.exports=e(0,"toUpperCase")},function(t,n,r){var e=r(9),o=r(106),u=r(6);t.exports=u(4,function(t,n,r,u){return e(t("function"==typeof n?o(n):n),r,u)})},function(t,n,r){var e=r(1);t.exports=e(function(t){for(var n=0,r=[];n<t.length;){for(var e=t[n],o=0;o<e.length;)"undefined"==typeof r[o]&&(r[o]=[]),r[o].push(e[o]),o+=1;n+=1}return r})},function(t,n,r){var e=r(2),o=r(8),u=r(124);t.exports=e(function(t,n,r){return u(t,o(n,r))})},function(t,n,r){var e=r(1);t.exports=function(){var t="\t\n\v\f\r \u2028\u2029\ufeff",n="",r="function"==typeof String.prototype.trim;return e(r&&!t.trim()&&n.trim()?function(t){return t.trim()}:function(n){var r=new RegExp("^["+t+"]["+t+"]*"),e=new RegExp("["+t+"]["+t+"]*$");return n.replace(r,"").replace(e,"")})}()},function(t,n,r){var e=r(12),o=r(10),u=r(0);t.exports=u(function(t,n){return e(t.length,function(){try{return t.apply(this,arguments)}catch(t){return n.apply(this,o([t],arguments))}})})},function(t,n,r){var e=r(1);t.exports=e(function(t){return function(){return t(Array.prototype.slice.call(arguments,0))}})},function(t,n,r){var e=r(1),o=r(42);t.exports=e(function(t){return o(1,t)})},function(t,n,r){var e=r(0),o=r(6);t.exports=e(function(t,n){return o(t,function(){for(var r,e=1,o=n,u=0;e<=t&&"function"==typeof o;)r=e===t?arguments.length:u+o.length,o=o.apply(this,Array.prototype.slice.call(arguments,u,r)),e+=1,u=r;return o})})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=t(n),e=[];r&&r.length;)e[e.length]=r[0],r=t(r[1]);return e})},function(t,n,r){var e=r(10),o=r(0),u=r(53),i=r(66);t.exports=o(u(i,e))},function(t,n,r){var e=r(10),o=r(2),u=r(67);t.exports=o(function(t,n,r){return u(t,e(n,r))})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)?r:n(r)})},function(t,n,r){var e=r(59),o=r(52);t.exports=o(e)},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=r;!t(e);)e=n(e);return e})},function(t,n,r){var e=r(1);t.exports=e(function(t){var n,r=[];for(n in t)r[r.length]=t[n];return r})},function(t,n,r){var e=r(0);t.exports=function(){var t=function(t){return{value:t,map:function(){return this}}};return e(function(n,r){return n(t)(r).value})}()},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){return t(r)?n(r):r})},function(t,n,r){var e=r(0),o=r(11),u=r(8),i=r(132);t.exports=e(function(t,n){return i(u(o,t),n)})},function(t,n,r){var e=r(17),o=r(0),u=r(36),i=r(44);t.exports=o(function(t,n){return i(u(e)(t),n)})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r,e=0,o=t.length,u=n.length,i=[];e<o;){for(r=0;r<u;)i[i.length]=[t[e],n[r]],r+=1;e+=1}return i})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=[],e=0,o=Math.min(t.length,n.length);e<o;)r[e]=[t[e],n[e]],e+=1;return r})},function(t,n,r){var e=r(0);t.exports=e(function(t,n){for(var r=0,e=Math.min(t.length,n.length),o={};r<e;)o[t[r]]=n[r],r+=1;return o})},function(t,n,r){var e=r(2);t.exports=e(function(t,n,r){for(var e=[],o=0,u=Math.min(n.length,r.length);o<u;)e[o]=t(n[o],r[o]),o+=1;return e})},function(t,n,r){"use strict";var e=r(151),o=r(76),u=r(49),i=r(31),c=r(145),s=r(68),f=r(134),a=r(69),p=r(137),l=r(139),v=r(133),h=r(75),x=r(150),y=r(135),d=r(48),g=r(142),m=r(46),b=r(136),w=r(30),j=r(141),A=r(73),O=r(147),N=r(50),S=r(148),E=r(74),_=r(149),k=r(70),F=r(138),q=r(32),I=r(146),P=r(72),W=r(144),C=r(47),B=r(140),T=r(71),U=r(143);t.exports={isNotUndefined:e,isUndefined:o,isNull:u,isNotNull:i,isNotNil:c,isArray:s,isNotArray:f,isBoolean:a,isNotBoolean:p,isNotEmpty:l,isNilOrEmpty:v,isString:h,isNotString:x,isNotArrayLike:y,isGeneratorFunction:d,isNotGeneratorFunction:g,isAsyncFunction:m,isNotAsyncFunction:b,isFunction:w,isNotFunction:j,isObject:A,isNotObject:O,isObjectLike:N,isNotObjectLike:S,isPlainObject:E,isNotPlainObject:_,isDate:k,isNotDate:F,isNumber:q,isNotNumber:I,isNaN:P,isNotNaN:W,isFinite:C,isNotFinite:B,isInteger:T,isNotInteger:U}}])}); |
@@ -7,3 +7,3 @@ { | ||
"keywords": "ramda extensions addons cookbook adjunct recipe extras", | ||
"version": "0.6.0", | ||
"version": "0.7.0", | ||
"homepage": "https://github.com/char0n/ramda-adjunct", | ||
@@ -52,10 +52,10 @@ "license": "SEE LICENSE IN LICENSE.md", | ||
"devDependencies": { | ||
"babel-core": "=6.23.1", | ||
"babel-loader": "=6.3.2", | ||
"babel-preset-es2015": "=6.22.0", | ||
"babel-core": "=6.24.0", | ||
"babel-loader": "=6.4.1", | ||
"babel-preset-es2015": "=6.24.0", | ||
"better-npm-run": "=0.0.14", | ||
"codecov": "=1.0.1", | ||
"conventional-changelog-cli": "=1.2.0", | ||
"codecov": "=2.1.0", | ||
"conventional-changelog-cli": "=1.3.1", | ||
"docdash": "git+https://github.com/char0n/docdash.git#abb8b242321856b5ae9d90948cb5de4d960a45b2", | ||
"eslint": "=3.17.0", | ||
"eslint": "=3.18.0", | ||
"eslint-config-airbnb": "=14.1.0", | ||
@@ -70,12 +70,13 @@ "eslint-plugin-import": "=2.2.0", | ||
"mocha-junit-reporter": "=1.13.0", | ||
"mocha-multi-reporters": "=1.1.3", | ||
"mocha-multi-reporters": "=1.1.4", | ||
"mocha-webpack": "=0.7.0", | ||
"nsp": "=2.6.2", | ||
"phantom": "=4.0.0", | ||
"rimraf": "=2.5.4", | ||
"nsp": "=2.6.3", | ||
"phantom": "=4.0.1", | ||
"rimraf": "=2.6.1", | ||
"testem": "=1.15.0", | ||
"typescript": "=2.2.0", | ||
"typescript": "=2.2.1", | ||
"webpack": "=2.2.1" | ||
}, | ||
"typings": "src/index.d.ts" | ||
"typings": "src/index.d.ts", | ||
"tonicExampleFilename": "tonicExample.js" | ||
} |
@@ -43,2 +43,4 @@ [![CircleCI](https://circleci.com/gh/char0n/ramda-adjunct.svg?style=svg)](https://circleci.com/gh/char0n/ramda-adjunct) | ||
_Do you want to find out more why this library exists ? Read this [**article**](https://www.linkedin.com/pulse/ramda-adjunct-vladim%C3%ADr-gorej)._ | ||
## Requirements | ||
@@ -73,2 +75,3 @@ | ||
- [0.6.0](https://char0n.github.io/ramda-adjunct/0.6.0) | ||
- [0.6.0](https://char0n.github.io/ramda-adjunct/0.7.0) | ||
- Latest: https://char0n.github.io/ramda-adjunct | ||
@@ -147,2 +150,6 @@ | ||
## Assimilated libraries | ||
- [rcb](https://github.com/enten/rcb) - Ramda Cookbook implementation | ||
## Typescript support | ||
@@ -149,0 +156,0 @@ |
@@ -166,2 +166,22 @@ declare var RA: RamdaAdjunct.Static; | ||
isNotNumber(val: any): boolean | ||
/** | ||
* Checks whether the passed value is a finite `Number`. | ||
*/ | ||
isFinite(val: any): boolean | ||
/** | ||
* Checks whether the passed value is complement of finite `Number`. | ||
*/ | ||
isNotFinite(val: any): boolean | ||
/** | ||
* Checks whether the passed value is a an `integer`. | ||
*/ | ||
isInteger(val: any): boolean | ||
/** | ||
* Checks whether the passed value is complement of `integer`. | ||
*/ | ||
isNotInteger(val: any): boolean | ||
} | ||
@@ -168,0 +188,0 @@ |
@@ -35,2 +35,6 @@ 'use strict'; | ||
const isNotNaN = require('./isNotNaN'); | ||
const isFinite = require('./isFinite'); | ||
const isNotFinite = require('./isNotFinite'); | ||
const isInteger = require('./isInterger'); | ||
const isNotInteger = require('./isNotInteger'); | ||
@@ -73,2 +77,6 @@ /** | ||
isNotNaN, | ||
isFinite, | ||
isNotFinite, | ||
isInteger, | ||
isNotInteger, | ||
}; |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
563082
56
15141
168