Socket
Socket
Sign inDemoInstall

async-af

Package Overview
Dependencies
Maintainers
1
Versions
76
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-af - npm Package Compare versions

Comparing version 3.1.0 to 3.2.0

70

index.js
/*!
* AsyncAF (async/await fun)
*
* async-af v3.1.0
* async-af v3.2.0
*

@@ -330,2 +330,66 @@ * Copyright (c) 2017-present, Scott Rudiger (https://github.com/ScottRudiger)

/***/ "./lib/methods/arrays/everyAF.js":
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var _internal_commonCallback__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("./lib/methods/_internal/commonCallback.js");
// eslint-disable-line no-unused-vars
/**
* tests whether all elements in the array pass the test implemented by the provided callback function
*
* if any elements are a `Promise`, they will first be resolved in parallel and then tested
*
* @param {callback} callback function that tests each element of the array
*
* `callback` accepts three arguments:
* - `currentValue` value of the current element being processed in the array
* - `index`*`(optional)`* index of `currentValue` in the array
* - `array`*`(optional)`* the array that `everyAF` is being applied to
* @param {Object=} thisArg value to use as `this` when executing `callback`
* @returns {Promise.<Boolean>} `Promise` that resolves to `true` if the callback function returns a truthy value for every array element; otherwise, `false`
* @example
*
* const promises = [1, 2, 3].map(n => Promise.resolve(n));
*
*
* // basic usage
* const allAreOdd = AsyncAF(promises).everyAF(n => n % 2);
*
* console.log(allAreOdd); // Promise that resolves to false
*
* AsyncAF.logAF(allAreOdd); // logs false
*
*
* // using .then
* AsyncAF(promises).everyAF(n => n % 2).then(allAreOdd => {
* console.log(allAreOdd); // logs false
* });
*
*
* // inside an async function
* (async () => {
* const allAreNums = await AsyncAF(promises).everyAF(
* n => typeof n === 'number'
* );
* console.log(allAreNums); // logs true
* })();
* @since 3.2.0
* @see every
* @memberof AsyncAF#
*/
const everyAF = function everyAF(callback, ...thisArg) {
return this.then(arr => {
if (!arr) throw TypeError(`Cannot read property 'everyAF' of ${arr}`);
if (!Array.isArray(arr)) throw TypeError(`${arr}.everyAF is not a function`);
return arr.every(callback, thisArg[0]);
});
};
/* harmony default export */ __webpack_exports__["default"] = (everyAF);
/***/ }),
/***/ "./lib/methods/arrays/filterAF.js":

@@ -1007,2 +1071,3 @@ /***/ (function(module, __webpack_exports__, __webpack_require__) {

/* harmony import */ var _lib_methods_arrays_reduceAF__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__("./lib/methods/arrays/reduceAF.js");
/* harmony import */ var _lib_methods_arrays_everyAF__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__("./lib/methods/arrays/everyAF.js");
/* eslint-disable import/first */

@@ -1041,4 +1106,5 @@ const libName = 'async-af';

const arrayPath = `${libPath}methods/arrays/`;
const prototypeMethods = [[`@${libName}/map`, `${arrayPath}mapAF`, _lib_methods_arrays_mapAF__WEBPACK_IMPORTED_MODULE_2__["default"]], [`@${libName}/forEach`, `${arrayPath}forEachAF`, _lib_methods_arrays_forEachAF__WEBPACK_IMPORTED_MODULE_3__["default"]], [`@${libName}/filter`, `${arrayPath}filterAF`, _lib_methods_arrays_filterAF__WEBPACK_IMPORTED_MODULE_4__["default"]], [`@${libName}/reduce`, `${arrayPath}reduceAF`, _lib_methods_arrays_reduceAF__WEBPACK_IMPORTED_MODULE_5__["default"]]];
const prototypeMethods = [[`@${libName}/map`, `${arrayPath}mapAF`, _lib_methods_arrays_mapAF__WEBPACK_IMPORTED_MODULE_2__["default"]], [`@${libName}/forEach`, `${arrayPath}forEachAF`, _lib_methods_arrays_forEachAF__WEBPACK_IMPORTED_MODULE_3__["default"]], [`@${libName}/filter`, `${arrayPath}filterAF`, _lib_methods_arrays_filterAF__WEBPACK_IMPORTED_MODULE_4__["default"]], [`@${libName}/reduce`, `${arrayPath}reduceAF`, _lib_methods_arrays_reduceAF__WEBPACK_IMPORTED_MODULE_5__["default"]], [`@${libName}/every`, `${arrayPath}everyAF`, _lib_methods_arrays_everyAF__WEBPACK_IMPORTED_MODULE_6__["default"]]];
/* harmony default export */ __webpack_exports__["default"] = ([...classes, ...collections, ...staticMethods, ...prototypeMethods]);

@@ -1045,0 +1111,0 @@ /* eslint-disable-next-line no-unused-vars */

4

legacy/min.js
/*!
* AsyncAF (async/await fun)
*
* async-af v3.1.0
* async-af v3.2.0
*

@@ -10,3 +10,3 @@ * Copyright (c) 2017-present, Scott Rudiger (https://github.com/ScottRudiger)

*/
!function webpackUniversalModuleDefinition(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define("async-af",[],e):"object"==typeof exports?exports["async-af"]=e():(t["async-af"]=t["async-af"]||{},t["async-af"]["async-af"]=e())}("undefined"!=typeof self?self:this,function(){return function(t){var e={};function __webpack_require__(r){if(e[r])return e[r].exports;var n=e[r]={i:r,l:!1,exports:{}};return t[r].call(n.exports,n,n.exports,__webpack_require__),n.l=!0,n.exports}return __webpack_require__.m=t,__webpack_require__.c=e,__webpack_require__.d=function(t,e,r){__webpack_require__.o(t,e)||Object.defineProperty(t,e,{configurable:!1,enumerable:!0,get:r})},__webpack_require__.r=function(t){Object.defineProperty(t,"__esModule",{value:!0})},__webpack_require__.n=function(t){var e=t&&t.__esModule?function getDefault(){return t.default}:function getModuleExports(){return t};return __webpack_require__.d(e,"a",e),e},__webpack_require__.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},__webpack_require__.p="",__webpack_require__(__webpack_require__.s=143)}([function(t,e){var r=t.exports={version:"2.5.5"};"number"==typeof __e&&(__e=r)},function(t,e,r){var n=r(33)("wks"),o=r(20),i=r(2).Symbol,c="function"==typeof i;(t.exports=function(t){return n[t]||(n[t]=c&&i[t]||(c?i:o)("Symbol."+t))}).store=n},function(t,e){var r=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=r)},function(t,e,r){var n=r(5);t.exports=function(t){if(!n(t))throw TypeError(t+" is not an object!");return t}},function(t,e,r){var n=r(2),o=r(0),i=r(13),c=r(9),a=r(10),u=function(t,e,r){var f,s,p,l=t&u.F,_=t&u.G,y=t&u.S,h=t&u.P,v=t&u.B,d=t&u.W,m=_?o:o[e]||(o[e]={}),b=m.prototype,g=_?n:y?n[e]:(n[e]||{}).prototype;for(f in _&&(r=e),r)(s=!l&&g&&void 0!==g[f])&&a(m,f)||(p=s?g[f]:r[f],m[f]=_&&"function"!=typeof g[f]?r[f]:v&&s?i(p,n):d&&g[f]==p?function(t){var e=function(e,r,n){if(this instanceof t){switch(arguments.length){case 0:return new t;case 1:return new t(e);case 2:return new t(e,r)}return new t(e,r,n)}return t.apply(this,arguments)};return e.prototype=t.prototype,e}(p):h&&"function"==typeof p?i(Function.call,p):p,h&&((m.virtual||(m.virtual={}))[f]=p,t&u.R&&b&&!b[f]&&c(b,f,p)))};u.F=1,u.G=2,u.S=4,u.P=8,u.B=16,u.W=32,u.U=64,u.R=128,t.exports=u},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e,r){t.exports=!r(12)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(t,e,r){var n=r(3),o=r(62),i=r(39),c=Object.defineProperty;e.f=r(6)?Object.defineProperty:function defineProperty(t,e,r){if(n(t),e=i(e,!0),n(r),o)try{return c(t,e,r)}catch(t){}if("get"in r||"set"in r)throw TypeError("Accessors not supported!");return"value"in r&&(t[e]=r.value),t}},function(t,e,r){var n=r(36),o=r(129);t.exports=function _taggedTemplateLiteral(t,e){return e||(e=t.slice(0)),o(n(t,{raw:{value:o(e)}}))}},function(t,e,r){var n=r(7),o=r(16);t.exports=r(6)?function(t,e,r){return n.f(t,e,o(1,r))}:function(t,e,r){return t[e]=r,t}},function(t,e){var r={}.hasOwnProperty;t.exports=function(t,e){return r.call(t,e)}},function(t,e){t.exports={}},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e,r){var n=r(17);t.exports=function(t,e,r){if(n(t),void 0===e)return t;switch(r){case 1:return function(r){return t.call(e,r)};case 2:return function(r,n){return t.call(e,r,n)};case 3:return function(r,n,o){return t.call(e,r,n,o)}}return function(){return t.apply(e,arguments)}}},function(t,e,r){var n=r(59),o=r(27);t.exports=function(t){return n(o(t))}},function(t,e){var r={}.toString;t.exports=function(t){return r.call(t).slice(8,-1)}},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},function(t,e,r){"use strict";var n=r(83)(!0);r(48)(String,"String",function(t){this._t=t+"",this._i=0},function(){var t,e=this._t,r=this._i;return r>=e.length?{value:void 0,done:!0}:(t=n(e,r),this._i+=t.length,{value:t,done:!1})})},function(t,e,r){var n=r(7).f,o=r(10),i=r(1)("toStringTag");t.exports=function(t,e,r){t&&!o(t=r?t:t.prototype,i)&&n(t,i,{configurable:!0,value:e})}},function(t,e){var r=0,n=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++r+n).toString(36))}},function(t,e){t.exports=!0},function(t,e,r){"use strict";var n=r(17);t.exports.f=function(t){return new function PromiseCapability(t){var e,r;this.promise=new t(function(t,n){if(void 0!==e||void 0!==r)throw TypeError("Bad Promise constructor");e=t,r=n}),this.resolve=n(e),this.reject=n(r)}(t)}},function(t,e,r){r(87);for(var n=r(2),o=r(9),i=r(11),c=r(1)("toStringTag"),a="CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,TextTrackList,TouchList".split(","),u=0;u<a.length;u++){var f=a[u],s=n[f],p=s&&s.prototype;p&&!p[c]&&o(p,c,f),i[f]=i.Array}},function(t,e,r){var n=r(27);t.exports=function(t){return Object(n(t))}},function(t,e,r){var n=r(33)("keys"),o=r(20);t.exports=function(t){return n[t]||(n[t]=o(t))}},function(t,e){var r=Math.ceil,n=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?n:r)(t)}},function(t,e){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},function(t,e,r){var n=r(60),o=r(32);t.exports=Object.keys||function keys(t){return n(t,o)}},function(t,e,r){var n=r(5),o=r(2).document,i=n(o)&&n(o.createElement);t.exports=function(t){return i?o.createElement(t):{}}},function(t,e,r){var n=r(126),o=r(125),i=r(121);t.exports=function _slicedToArray(t,e){return n(t)||o(t,e)||i()}},function(t,e,r){var n=r(15),o=r(1)("toStringTag"),i="Arguments"==n(function(){return arguments}());t.exports=function(t){var e,r,c;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(r=function(t,e){try{return t[e]}catch(t){}}(e=Object(t),o))?r:i?n(e):"Object"==(c=n(e))&&"function"==typeof e.callee?"Arguments":c}},function(t,e){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(t,e,r){var n=r(2),o=n["__core-js_shared__"]||(n["__core-js_shared__"]={});t.exports=function(t){return o[t]||(o[t]={})}},function(t,e,r){var n=r(26),o=Math.min;t.exports=function(t){return t>0?o(n(t),9007199254740991):0}},function(t,e,r){t.exports=r(80)},function(t,e,r){t.exports=r(136)},function(t,e,r){var n=r(31),o=r(1)("iterator"),i=r(11);t.exports=r(0).getIteratorMethod=function(t){if(void 0!=t)return t[o]||t["@@iterator"]||i[n(t)]}},function(t,e){e.f={}.propertyIsEnumerable},function(t,e,r){var n=r(5);t.exports=function(t,e){if(!n(t))return t;var r,o;if(e&&"function"==typeof(r=t.toString)&&!n(o=r.call(t)))return o;if("function"==typeof(r=t.valueOf)&&!n(o=r.call(t)))return o;if(!e&&"function"==typeof(r=t.toString)&&!n(o=r.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},function(t,e,r){t.exports=r(120)},function(t,e){t.exports=function _classCallCheck(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}},function(t,e,r){"use strict";r.r(e);var n=r(36),o=r.n(n),i=r(90),c=r.n(i),a=r(35),u=r.n(a),f=r(141),s=function logAF(){for(var t=arguments.length,e=Array(t),r=0;r<t;r++)e[r]=arguments[r];logAF.label&&e.unshift(logAF.setFormat());var n=Date.now();return u.a.all(e).then(function(t){if(logAF.duration){var e=((Date.now()-n)/1e3).toFixed(3);t.push("\nin ".concat(e," secs"))}logAF.wrappedLog.apply(logAF,c()(t))})};o()(s,{wrappedLog:{value:function wrappedLog(){var t;console&&console.log&&(t=console).log.apply(t,arguments)},writable:!0},wrappedWarn:{value:function wrappedWarn(){var t;console&&console.warn&&(t=console).warn.apply(t,arguments)},writable:!0},setFormat:{value:f.a,writable:!0},options:{value:function logAfOptions(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.label,r=t.duration,n=t.labelFormat;if("boolean"==typeof e&&(p.label=e),"boolean"==typeof r&&(p.duration=r),n){var o=n.slice(0,6);["file","path","parent","arrow","custom"].includes(o)?(p.labelFormat=o,p.fullFormat=n):p.wrappedWarn("AsyncAF Warning: logAF labelFormat option must be set to 'file' (default), 'path', 'parent', 'arrow', or 'custom'")}},writable:!0}}),(s.options.reset=function logAfOptionsReset(){s.label=!0,s.labelFormat="file",s.duration=!0})();var p=e.default=s},function(t,e,r){var n=r(3),o=r(5),i=r(22);t.exports=function(t,e){if(n(t),o(e)&&e.constructor===t)return e;var r=i.f(t);return(0,r.resolve)(e),r.promise}},function(t,e){t.exports=function(t){try{return{e:!1,v:t()}}catch(t){return{e:!0,v:t}}}},function(t,e,r){var n,o,i,c=r(13),a=r(76),u=r(47),f=r(29),s=r(2),p=s.process,l=s.setImmediate,_=s.clearImmediate,y=s.MessageChannel,h=s.Dispatch,v=0,d={},m=function(){var t=+this;if(d.hasOwnProperty(t)){var e=d[t];delete d[t],e()}},b=function(t){m.call(t.data)};l&&_||(l=function setImmediate(t){for(var e=[],r=1;arguments.length>r;)e.push(arguments[r++]);return d[++v]=function(){a("function"==typeof t?t:Function(t),e)},n(v),v},_=function clearImmediate(t){delete d[t]},"process"==r(15)(p)?n=function(t){p.nextTick(c(m,t,1))}:h&&h.now?n=function(t){h.now(c(m,t,1))}:y?(i=(o=new y).port2,o.port1.onmessage=b,n=c(i.postMessage,i,1)):s.addEventListener&&"function"==typeof postMessage&&!s.importScripts?(n=function(t){s.postMessage(t+"","*")},s.addEventListener("message",b,!1)):n="onreadystatechange"in f("script")?function(t){u.appendChild(f("script")).onreadystatechange=function(){u.removeChild(this),m.call(t)}}:function(t){setTimeout(c(m,t,1),0)}),t.exports={set:l,clear:_}},function(t,e,r){var n=r(3),o=r(17),i=r(1)("species");t.exports=function(t,e){var r,c=n(t).constructor;return void 0===c||void 0==(r=n(c)[i])?e:o(r)}},function(t,e,r){var n=r(2).document;t.exports=n&&n.documentElement},function(t,e,r){"use strict";var n=r(21),o=r(4),i=r(57),c=r(9),a=r(11),u=r(84),f=r(19),s=r(55),p=r(1)("iterator"),l=!([].keys&&"next"in[].keys()),_=function(){return this};t.exports=function(t,e,r,y,h,v,d){u(r,e,y);var m,b,g,O=function(t){if(!l&&t in w)return w[t];switch(t){case"keys":return function keys(){return new r(this,t)};case"values":return function values(){return new r(this,t)}}return function entries(){return new r(this,t)}},x=e+" Iterator",P="values"==h,A=!1,w=t.prototype,E=w[p]||w["@@iterator"]||h&&w[h],j=E||O(h),T=h?P?O("entries"):j:void 0,S="Array"==e&&w.entries||E;if(S&&(g=s(S.call(new t)))!==Object.prototype&&g.next&&(f(g,x,!0),n||"function"==typeof g[p]||c(g,p,_)),P&&E&&"values"!==E.name&&(A=!0,j=function values(){return E.call(this)}),n&&!d||!l&&!A&&w[p]||c(w,p,j),a[e]=j,a[x]=_,h)if(m={values:P?j:O("values"),keys:v?j:O("keys"),entries:T},d)for(b in m)b in w||i(w,b,m[b]);else o(o.P+o.F*(l||A),e,m);return m}},function(t,e,r){var n=r(1)("iterator"),o=!1;try{var i=[7][n]();i.return=function(){o=!0},Array.from(i,function(){throw 2})}catch(t){}t.exports=function(t,e){if(!e&&!o)return!1;var r=!1;try{var i=[7],c=i[n]();c.next=function(){return{done:r=!0}},i[n]=function(){return c},t(i)}catch(t){}return r}},function(t,e,r){var n=r(11),o=r(1)("iterator"),i=Array.prototype;t.exports=function(t){return void 0!==t&&(n.Array===t||i[o]===t)}},function(t,e,r){var n=r(3);t.exports=function(t,e,r,o){try{return o?e(n(r)[0],r[1]):e(r)}catch(e){var i=t.return;throw void 0!==i&&n(i.call(t)),e}}},function(t,e){},function(t,e,r){var n=r(2),o=r(0),i=r(21),c=r(54),a=r(7).f;t.exports=function(t){var e=o.Symbol||(o.Symbol=i?{}:n.Symbol||{});"_"==t.charAt(0)||t in e||a(e,t,{value:c.f(t)})}},function(t,e,r){e.f=r(1)},function(t,e,r){var n=r(10),o=r(24),i=r(25)("IE_PROTO"),c=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=o(t),n(t,i)?t[i]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?c:null}},function(t,e,r){var n=r(3),o=r(61),i=r(32),c=r(25)("IE_PROTO"),a=function(){},u=function(){var t,e=r(29)("iframe"),n=i.length;for(e.style.display="none",r(47).appendChild(e),e.src="javascript:",(t=e.contentWindow.document).open(),t.write("<script>document.F=Object<\/script>"),t.close(),u=t.F;n--;)delete u.prototype[i[n]];return u()};t.exports=Object.create||function create(t,e){var r;return null!==t?(a.prototype=n(t),r=new a,a.prototype=null,r[c]=t):r=u(),void 0===e?r:o(r,e)}},function(t,e,r){t.exports=r(9)},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e,r){var n=r(15);t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==n(t)?t.split(""):Object(t)}},function(t,e,r){var n=r(10),o=r(14),i=r(89)(!1),c=r(25)("IE_PROTO");t.exports=function(t,e){var r,a=o(t),u=0,f=[];for(r in a)r!=c&&n(a,r)&&f.push(r);for(;e.length>u;)n(a,r=e[u++])&&(~i(f,r)||f.push(r));return f}},function(t,e,r){var n=r(7),o=r(3),i=r(28);t.exports=r(6)?Object.defineProperties:function defineProperties(t,e){o(t);for(var r,c=i(e),a=c.length,u=0;a>u;)n.f(t,r=c[u++],e[r]);return t}},function(t,e,r){t.exports=!r(6)&&!r(12)(function(){return 7!=Object.defineProperty(r(29)("div"),"a",{get:function(){return 7}}).a})},function(t,e,r){var n=r(116),o=r(114);function _typeof2(t){return(_typeof2="function"==typeof o&&"symbol"==typeof n?function _typeof2(t){return typeof t}:function _typeof2(t){return t&&"function"==typeof o&&t.constructor===o&&t!==o.prototype?"symbol":typeof t})(t)}function _typeof(e){return"function"==typeof o&&"symbol"===_typeof2(n)?t.exports=_typeof=function _typeof(t){return _typeof2(t)}:t.exports=_typeof=function _typeof(t){return t&&"function"==typeof o&&t.constructor===o&&t!==o.prototype?"symbol":_typeof2(t)},_typeof(e)}t.exports=_typeof},function(t,e,r){var n=r(105);function _getPrototypeOf(e){return t.exports=_getPrototypeOf=n||function _getPrototypeOf(t){return t.__proto__},_getPrototypeOf(e)}t.exports=_getPrototypeOf},function(t,e,r){var n=r(63),o=r(106);t.exports=function _possibleConstructorReturn(t,e){return!e||"object"!==n(e)&&"function"!=typeof e?o(t):e}},function(t,e,r){var n=r(117);t.exports=function _inherits(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");n(t.prototype,e&&e.prototype),e&&n(t,e)}},function(t,e,r){t.exports=r(132)},function(t,e,r){var n=r(4),o=r(0),i=r(12);t.exports=function(t,e){var r=(o.Object||{})[t]||Object[t],c={};c[t]=e(r),n(n.S+n.F*i(function(){r(1)}),"Object",c)}},function(t,e,r){var n=r(20)("meta"),o=r(5),i=r(10),c=r(7).f,a=0,u=Object.isExtensible||function(){return!0},f=!r(12)(function(){return u(Object.preventExtensions({}))}),s=function(t){c(t,n,{value:{i:"O"+ ++a,w:{}}})},p=t.exports={KEY:n,NEED:!1,fastKey:function(t,e){if(!o(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!i(t,n)){if(!u(t))return"F";if(!e)return"E";s(t)}return t[n].i},getWeak:function(t,e){if(!i(t,n)){if(!u(t))return!0;if(!e)return!1;s(t)}return t[n].w},onFreeze:function(t){return f&&p.NEED&&u(t)&&!i(t,n)&&s(t),t}}},function(t,e,r){"use strict";r.r(e);var n=r(40),o=r.n(n),i=r(66),c=r.n(i),a=r(65),u=r.n(a),f=r(64),s=r.n(f),p=r(35),l=r.n(p),_=r(41),y=r.n(_),h=r(91),v=r.n(h),d=r(67),m=r.n(d),b=r(63),g=r.n(b);r.d(e,"AsyncAfWrapperProto",function(){return O});var O=function(){function AsyncAfWrapperProto(t){y()(this,AsyncAfWrapperProto),this.data=l.a[Array.isArray(t)?"all":"resolve"](t)}return v()(AsyncAfWrapperProto,[{key:"then",value:function then(t,e){return new this.constructor(this.data.then(t,e))}},{key:"catch",value:function _catch(t){return this.then(null,t)}}]),AsyncAfWrapperProto}(),x=function(t){function AsyncAfWrapper(){return y()(this,AsyncAfWrapper),u()(this,s()(AsyncAfWrapper).apply(this,arguments))}return c()(AsyncAfWrapper,t),AsyncAfWrapper}(O),P=x;(x=function AsyncAfWrapper(t){return new P(t)}).prototype=P.prototype,o()(x,P),x.prototype.constructor=x,O.use=function use(t){if("object"!==g()(t))throw new TypeError("use method accepts an Object containing the methods you'd like to add to the AsyncAF prototype");m()(this.prototype,t)},e.default=x},function(t,e,r){"use strict";var n=r(4),o=r(22),i=r(44);n(n.S,"Promise",{try:function(t){var e=o.f(this),r=i(t);return(r.e?e.reject:e.resolve)(r.v),e.promise}})},function(t,e,r){"use strict";var n=r(4),o=r(0),i=r(2),c=r(46),a=r(43);n(n.P+n.R,"Promise",{finally:function(t){var e=c(this,o.Promise||i.Promise),r="function"==typeof t;return this.then(r?function(r){return a(e,t()).then(function(){return r})}:t,r?function(r){return a(e,t()).then(function(){throw r})}:t)}})},function(t,e,r){"use strict";var n=r(2),o=r(0),i=r(7),c=r(6),a=r(1)("species");t.exports=function(t){var e="function"==typeof o[t]?o[t]:n[t];c&&e&&!e[a]&&i.f(e,a,{configurable:!0,get:function(){return this}})}},function(t,e,r){var n=r(9);t.exports=function(t,e,r){for(var o in e)r&&t[o]?t[o]=e[o]:n(t,o,e[o]);return t}},function(t,e,r){var n=r(2),o=r(45).set,i=n.MutationObserver||n.WebKitMutationObserver,c=n.process,a=n.Promise,u="process"==r(15)(c);t.exports=function(){var t,e,r,f=function(){var n,o;for(u&&(n=c.domain)&&n.exit();t;){o=t.fn,t=t.next;try{o()}catch(n){throw t?r():e=void 0,n}}e=void 0,n&&n.enter()};if(u)r=function(){c.nextTick(f)};else if(!i||n.navigator&&n.navigator.standalone)if(a&&a.resolve){var s=a.resolve();r=function(){s.then(f)}}else r=function(){o.call(n,f)};else{var p=!0,l=document.createTextNode("");new i(f).observe(l,{characterData:!0}),r=function(){l.data=p=!p}}return function(n){var o={fn:n,next:void 0};e&&(e.next=o),t||(t=o,r()),e=o}}},function(t,e){t.exports=function(t,e,r){var n=void 0===r;switch(e.length){case 0:return n?t():t.call(r);case 1:return n?t(e[0]):t.call(r,e[0]);case 2:return n?t(e[0],e[1]):t.call(r,e[0],e[1]);case 3:return n?t(e[0],e[1],e[2]):t.call(r,e[0],e[1],e[2]);case 4:return n?t(e[0],e[1],e[2],e[3]):t.call(r,e[0],e[1],e[2],e[3])}return t.apply(r,e)}},function(t,e,r){var n=r(13),o=r(51),i=r(50),c=r(3),a=r(34),u=r(37),f={},s={};(e=t.exports=function(t,e,r,p,l){var _,y,h,v,d=l?function(){return t}:u(t),m=n(r,p,e?2:1),b=0;if("function"!=typeof d)throw TypeError(t+" is not iterable!");if(i(d)){for(_=a(t.length);_>b;b++)if((v=e?m(c(y=t[b])[0],y[1]):m(t[b]))===f||v===s)return v}else for(h=d.call(t);!(y=h.next()).done;)if((v=o(h,m,y.value,e))===f||v===s)return v}).BREAK=f,e.RETURN=s},function(t,e){t.exports=function(t,e,r,n){if(!(t instanceof e)||void 0!==n&&n in t)throw TypeError(r+": incorrect invocation!");return t}},function(t,e,r){"use strict";var n,o,i,c,a=r(21),u=r(2),f=r(13),s=r(31),p=r(4),l=r(5),_=r(17),y=r(78),h=r(77),v=r(46),d=r(45).set,m=r(75)(),b=r(22),g=r(44),O=r(43),x=u.TypeError,P=u.process,A=u.Promise,w="process"==s(P),E=function(){},j=o=b.f,T=!!function(){try{var t=A.resolve(1),e=(t.constructor={})[r(1)("species")]=function(t){t(E,E)};return(w||"function"==typeof PromiseRejectionEvent)&&t.then(E)instanceof e}catch(t){}}(),S=function(t){var e;return!(!l(t)||"function"!=typeof(e=t.then))&&e},F=function(t,e){if(!t._n){t._n=!0;var r=t._c;m(function(){for(var n=t._v,o=1==t._s,i=0,c=function(e){var r,i,c,a=o?e.ok:e.fail,u=e.resolve,f=e.reject,s=e.domain;try{a?(o||(2==t._h&&D(t),t._h=1),!0===a?r=n:(s&&s.enter(),r=a(n),s&&(s.exit(),c=!0)),r===e.promise?f(x("Promise-chain cycle")):(i=S(r))?i.call(r,u,f):u(r)):f(n)}catch(t){s&&!c&&s.exit(),f(t)}};r.length>i;)c(r[i++]);t._c=[],t._n=!1,e&&!t._h&&M(t)})}},M=function(t){d.call(u,function(){var e,r,n,o=t._v,i=L(t);if(i&&(e=g(function(){w?P.emit("unhandledRejection",o,t):(r=u.onunhandledrejection)?r({promise:t,reason:o}):(n=u.console)&&n.error&&n.error("Unhandled promise rejection",o)}),t._h=w||L(t)?2:1),t._a=void 0,i&&e.e)throw e.v})},L=function(t){return 1!==t._h&&0===(t._a||t._c).length},D=function(t){d.call(u,function(){var e;w?P.emit("rejectionHandled",t):(e=u.onrejectionhandled)&&e({promise:t,reason:t._v})})},k=function(t){var e=this;e._d||(e._d=!0,(e=e._w||e)._v=t,e._s=2,e._a||(e._a=e._c.slice()),F(e,!0))},W=function(t){var e,r=this;if(!r._d){r._d=!0,r=r._w||r;try{if(r===t)throw x("Promise can't be resolved itself");(e=S(t))?m(function(){var n={_w:r,_d:!1};try{e.call(t,f(W,n,1),f(k,n,1))}catch(t){k.call(n,t)}}):(r._v=t,r._s=1,F(r,!1))}catch(t){k.call({_w:r,_d:!1},t)}}};T||(A=function Promise(t){y(this,A,"Promise","_h"),_(t),n.call(this);try{t(f(W,this,1),f(k,this,1))}catch(t){k.call(this,t)}},(n=function Promise(t){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1}).prototype=r(74)(A.prototype,{then:function then(t,e){var r=j(v(this,A));return r.ok="function"!=typeof t||t,r.fail="function"==typeof e&&e,r.domain=w?P.domain:void 0,this._c.push(r),this._a&&this._a.push(r),this._s&&F(this,!1),r.promise},catch:function(t){return this.then(void 0,t)}}),i=function(){var t=new n;this.promise=t,this.resolve=f(W,t,1),this.reject=f(k,t,1)},b.f=j=function(t){return t===A||t===c?new i(t):o(t)}),p(p.G+p.W+p.F*!T,{Promise:A}),r(19)(A,"Promise"),r(73)("Promise"),c=r(0).Promise,p(p.S+p.F*!T,"Promise",{reject:function reject(t){var e=j(this);return(0,e.reject)(t),e.promise}}),p(p.S+p.F*(a||!T),"Promise",{resolve:function resolve(t){return O(a&&this===c?A:this,t)}}),p(p.S+p.F*!(T&&r(49)(function(t){A.all(t).catch(E)})),"Promise",{all:function all(t){var e=this,r=j(e),n=r.resolve,o=r.reject,i=g(function(){var r=[],i=0,c=1;h(t,!1,function(t){var a=i++,u=!1;r.push(void 0),c++,e.resolve(t).then(function(t){u||(u=!0,r[a]=t,--c||n(r))},o)}),--c||n(r)});return i.e&&o(i.v),r.promise},race:function race(t){var e=this,r=j(e),n=r.reject,o=g(function(){h(t,!1,function(t){e.resolve(t).then(r.resolve,n)})});return o.e&&n(o.v),r.promise}})},function(t,e,r){r(52),r(18),r(23),r(79),r(72),r(71),t.exports=r(0).Promise},function(t,e,r){var n=r(60),o=r(32).concat("length","prototype");e.f=Object.getOwnPropertyNames||function getOwnPropertyNames(t){return n(t,o)}},function(t,e,r){var n=r(38),o=r(16),i=r(14),c=r(39),a=r(10),u=r(62),f=Object.getOwnPropertyDescriptor;e.f=r(6)?f:function getOwnPropertyDescriptor(t,e){if(t=i(t),e=c(e,!0),u)try{return f(t,e)}catch(t){}if(a(t,e))return o(!n.f.call(t,e),t[e])}},function(t,e,r){var n=r(26),o=r(27);t.exports=function(t){return function(e,r){var i,c,a=o(e)+"",u=n(r),f=a.length;return u<0||u>=f?t?"":void 0:(i=a.charCodeAt(u))<55296||i>56319||u+1===f||(c=a.charCodeAt(u+1))<56320||c>57343?t?a.charAt(u):i:t?a.slice(u,u+2):c-56320+(i-55296<<10)+65536}}},function(t,e,r){"use strict";var n=r(56),o=r(16),i=r(19),c={};r(9)(c,r(1)("iterator"),function(){return this}),t.exports=function(t,e,r){t.prototype=n(c,{next:o(1,r)}),i(t,e+" Iterator")}},function(t,e){t.exports=function(t,e){return{value:e,done:!!t}}},function(t,e){t.exports=function(){}},function(t,e,r){"use strict";var n=r(86),o=r(85),i=r(11),c=r(14);t.exports=r(48)(Array,"Array",function(t,e){this._t=c(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,r=this._i++;return!t||r>=t.length?(this._t=void 0,o(1)):o(0,"keys"==e?r:"values"==e?t[r]:[r,t[r]])},"values"),i.Arguments=i.Array,n("keys"),n("values"),n("entries")},function(t,e,r){var n=r(26),o=Math.max,i=Math.min;t.exports=function(t,e){return(t=n(t))<0?o(t+e,0):i(t,e)}},function(t,e,r){var n=r(14),o=r(34),i=r(88);t.exports=function(t){return function(e,r,c){var a,u=n(e),f=o(u.length),s=i(c,f);if(t&&r!=r){for(;f>s;)if((a=u[s++])!=a)return!0}else for(;f>s;s++)if((t||s in u)&&u[s]===r)return t||s||0;return!t&&-1}}},function(t,e,r){var n=r(102),o=r(101),i=r(93);t.exports=function _toConsumableArray(t){return n(t)||o(t)||i()}},function(t,e,r){var n=r(92);function _defineProperties(t,e){for(var r=0;r<e.length;r++){var o=e[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),n(t,o.key,o)}}t.exports=function _createClass(t,e,r){return e&&_defineProperties(t.prototype,e),r&&_defineProperties(t,r),t}},function(t,e,r){t.exports=r(134)},function(t,e){t.exports=function _nonIterableSpread(){throw new TypeError("Invalid attempt to spread non-iterable instance")}},function(t,e,r){var n=r(31),o=r(1)("iterator"),i=r(11);t.exports=r(0).isIterable=function(t){var e=Object(t);return void 0!==e[o]||"@@iterator"in e||i.hasOwnProperty(n(e))}},function(t,e,r){r(23),r(18),t.exports=r(94)},function(t,e,r){t.exports=r(95)},function(t,e,r){"use strict";var n=r(7),o=r(16);t.exports=function(t,e,r){e in t?n.f(t,e,o(0,r)):t[e]=r}},function(t,e,r){"use strict";var n=r(13),o=r(4),i=r(24),c=r(51),a=r(50),u=r(34),f=r(97),s=r(37);o(o.S+o.F*!r(49)(function(t){Array.from(t)}),"Array",{from:function from(t){var e,r,o,p,l=i(t),_="function"==typeof this?this:Array,y=arguments.length,h=y>1?arguments[1]:void 0,v=void 0!==h,d=0,m=s(l);if(v&&(h=n(h,y>2?arguments[2]:void 0,2)),void 0==m||_==Array&&a(m))for(r=new _(e=u(l.length));e>d;d++)f(r,d,v?h(l[d],d):l[d]);else for(p=m.call(l),r=new _;!(o=p.next()).done;d++)f(r,d,v?c(p,h,[o.value,d],!0):o.value);return r.length=d,r}})},function(t,e,r){r(18),r(98),t.exports=r(0).Array.from},function(t,e,r){t.exports=r(99)},function(t,e,r){var n=r(100),o=r(96);t.exports=function _iterableToArray(t){if(o(Object(t))||"[object Arguments]"===Object.prototype.toString.call(t))return n(t)}},function(t,e){t.exports=function _arrayWithoutHoles(t){if(Array.isArray(t)){for(var e=0,r=Array(t.length);e<t.length;e++)r[e]=t[e];return r}}},function(t,e,r){var n=r(24),o=r(55);r(68)("getPrototypeOf",function(){return function getPrototypeOf(t){return o(n(t))}})},function(t,e,r){r(103),t.exports=r(0).Object.getPrototypeOf},function(t,e,r){t.exports=r(104)},function(t,e){t.exports=function _assertThisInitialized(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}},function(t,e,r){r(53)("observable")},function(t,e,r){r(53)("asyncIterator")},function(t,e,r){var n=r(14),o=r(81).f,i={}.toString,c="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];t.exports.f=function getOwnPropertyNames(t){return c&&"[object Window]"==i.call(t)?function(t){try{return o(t)}catch(t){return c.slice()}}(t):o(n(t))}},function(t,e,r){var n=r(15);t.exports=Array.isArray||function isArray(t){return"Array"==n(t)}},function(t,e,r){var n=r(28),o=r(58),i=r(38);t.exports=function(t){var e=n(t),r=o.f;if(r)for(var c,a=r(t),u=i.f,f=0;a.length>f;)u.call(t,c=a[f++])&&e.push(c);return e}},function(t,e,r){"use strict";var n=r(2),o=r(10),i=r(6),c=r(4),a=r(57),u=r(69).KEY,f=r(12),s=r(33),p=r(19),l=r(20),_=r(1),y=r(54),h=r(53),v=r(111),d=r(110),m=r(3),b=r(5),g=r(14),O=r(39),x=r(16),P=r(56),A=r(109),w=r(82),E=r(7),j=r(28),T=w.f,S=E.f,F=A.f,M=n.Symbol,L=n.JSON,D=L&&L.stringify,k=_("_hidden"),W=_("toPrimitive"),I={}.propertyIsEnumerable,C=s("symbol-registry"),R=s("symbols"),B=s("op-symbols"),K=Object.prototype,U="function"==typeof M,N=n.QObject,q=!N||!N.prototype||!N.prototype.findChild,G=i&&f(function(){return 7!=P(S({},"a",{get:function(){return S(this,"a",{value:7}).a}})).a})?function(t,e,r){var n=T(K,e);n&&delete K[e],S(t,e,r),n&&t!==K&&S(K,e,n)}:S,z=function(t){var e=R[t]=P(M.prototype);return e._k=t,e},H=U&&"symbol"==typeof M.iterator?function(t){return"symbol"==typeof t}:function(t){return t instanceof M},V=function defineProperty(t,e,r){return t===K&&V(B,e,r),m(t),e=O(e,!0),m(r),o(R,e)?(r.enumerable?(o(t,k)&&t[k][e]&&(t[k][e]=!1),r=P(r,{enumerable:x(0,!1)})):(o(t,k)||S(t,k,x(1,{})),t[k][e]=!0),G(t,e,r)):S(t,e,r)},J=function defineProperties(t,e){m(t);for(var r,n=v(e=g(e)),o=0,i=n.length;i>o;)V(t,r=n[o++],e[r]);return t},Y=function propertyIsEnumerable(t){var e=I.call(this,t=O(t,!0));return!(this===K&&o(R,t)&&!o(B,t))&&(!(e||!o(this,t)||!o(R,t)||o(this,k)&&this[k][t])||e)},Q=function getOwnPropertyDescriptor(t,e){if(t=g(t),e=O(e,!0),t!==K||!o(R,e)||o(B,e)){var r=T(t,e);return!r||!o(R,e)||o(t,k)&&t[k][e]||(r.enumerable=!0),r}},X=function getOwnPropertyNames(t){for(var e,r=F(g(t)),n=[],i=0;r.length>i;)o(R,e=r[i++])||e==k||e==u||n.push(e);return n},Z=function getOwnPropertySymbols(t){for(var e,r=t===K,n=F(r?B:g(t)),i=[],c=0;n.length>c;)!o(R,e=n[c++])||r&&!o(K,e)||i.push(R[e]);return i};U||(a((M=function Symbol(){if(this instanceof M)throw TypeError("Symbol is not a constructor!");var t=l(arguments.length>0?arguments[0]:void 0),e=function(r){this===K&&e.call(B,r),o(this,k)&&o(this[k],t)&&(this[k][t]=!1),G(this,t,x(1,r))};return i&&q&&G(K,t,{configurable:!0,set:e}),z(t)}).prototype,"toString",function toString(){return this._k}),w.f=Q,E.f=V,r(81).f=A.f=X,r(38).f=Y,r(58).f=Z,i&&!r(21)&&a(K,"propertyIsEnumerable",Y,!0),y.f=function(t){return z(_(t))}),c(c.G+c.W+c.F*!U,{Symbol:M});for(var $="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),tt=0;$.length>tt;)_($[tt++]);for(var et=j(_.store),rt=0;et.length>rt;)h(et[rt++]);c(c.S+c.F*!U,"Symbol",{for:function(t){return o(C,t+="")?C[t]:C[t]=M(t)},keyFor:function keyFor(t){if(!H(t))throw TypeError(t+" is not a symbol!");for(var e in C)if(C[e]===t)return e},useSetter:function(){q=!0},useSimple:function(){q=!1}}),c(c.S+c.F*!U,"Object",{create:function create(t,e){return void 0===e?P(t):J(P(t),e)},defineProperty:V,defineProperties:J,getOwnPropertyDescriptor:Q,getOwnPropertyNames:X,getOwnPropertySymbols:Z}),L&&c(c.S+c.F*(!U||f(function(){var t=M();return"[null]"!=D([t])||"{}"!=D({a:t})||"{}"!=D(Object(t))})),"JSON",{stringify:function stringify(t){for(var e,r,n=[t],o=1;arguments.length>o;)n.push(arguments[o++]);if(r=e=n[1],(b(e)||void 0!==t)&&!H(t))return d(e)||(e=function(t,e){if("function"==typeof r&&(e=r.call(this,t,e)),!H(e))return e}),n[1]=e,D.apply(L,n)}}),M.prototype[W]||r(9)(M.prototype,W,M.prototype.valueOf),p(M,"Symbol"),p(Math,"Math",!0),p(n.JSON,"JSON",!0)},function(t,e,r){r(112),r(52),r(108),r(107),t.exports=r(0).Symbol},function(t,e,r){t.exports=r(113)},function(t,e,r){r(18),r(23),t.exports=r(54).f("iterator")},function(t,e,r){t.exports=r(115)},function(t,e,r){var n=r(40);function _setPrototypeOf(e,r){return t.exports=_setPrototypeOf=n||function _setPrototypeOf(t,e){return t.__proto__=e,t},_setPrototypeOf(e,r)}t.exports=_setPrototypeOf},function(t,e,r){var n=r(5),o=r(3),i=function(t,e){if(o(t),!n(e)&&null!==e)throw TypeError(e+": can't set as prototype!")};t.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(t,e,n){try{(n=r(13)(Function.call,r(82).f(Object.prototype,"__proto__").set,2))(t,[]),e=!(t instanceof Array)}catch(t){e=!0}return function setPrototypeOf(t,r){return i(t,r),e?t.__proto__=r:n(t,r),t}}({},!1):void 0),check:i}},function(t,e,r){var n=r(4);n(n.S,"Object",{setPrototypeOf:r(118).set})},function(t,e,r){r(119),t.exports=r(0).Object.setPrototypeOf},function(t,e){t.exports=function _nonIterableRest(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}},function(t,e,r){var n=r(3),o=r(37);t.exports=r(0).getIterator=function(t){var e=o(t);if("function"!=typeof e)throw TypeError(t+" is not iterable!");return n(e.call(t))}},function(t,e,r){r(23),r(18),t.exports=r(122)},function(t,e,r){t.exports=r(123)},function(t,e,r){var n=r(124);t.exports=function _iterableToArrayLimit(t,e){var r=[],o=!0,i=!1,c=void 0;try{for(var a,u=n(t);!(o=(a=u.next()).done)&&(r.push(a.value),!e||r.length!==e);o=!0);}catch(t){i=!0,c=t}finally{try{o||null==u.return||u.return()}finally{if(i)throw c}}return r}},function(t,e){t.exports=function _arrayWithHoles(t){if(Array.isArray(t))return t}},function(t,e,r){var n=r(5),o=r(69).onFreeze;r(68)("freeze",function(t){return function freeze(e){return t&&n(e)?t(o(e)):e}})},function(t,e,r){r(127),t.exports=r(0).Object.freeze},function(t,e,r){t.exports=r(128)},function(t,e,r){"use strict";var n=r(28),o=r(58),i=r(38),c=r(24),a=r(59),u=Object.assign;t.exports=!u||r(12)(function(){var t={},e={},r=Symbol(),n="abcdefghijklmnopqrst";return t[r]=7,n.split("").forEach(function(t){e[t]=t}),7!=u({},t)[r]||Object.keys(u({},e)).join("")!=n})?function assign(t,e){for(var r=c(t),u=arguments.length,f=1,s=o.f,p=i.f;u>f;)for(var l,_=a(arguments[f++]),y=s?n(_).concat(s(_)):n(_),h=y.length,v=0;h>v;)p.call(_,l=y[v++])&&(r[l]=_[l]);return r}:u},function(t,e,r){var n=r(4);n(n.S+n.F,"Object",{assign:r(130)})},function(t,e,r){r(131),t.exports=r(0).Object.assign},function(t,e,r){var n=r(4);n(n.S+n.F*!r(6),"Object",{defineProperty:r(7).f})},function(t,e,r){r(133);var n=r(0).Object;t.exports=function defineProperty(t,e,r){return n.defineProperty(t,e,r)}},function(t,e,r){var n=r(4);n(n.S+n.F*!r(6),"Object",{defineProperties:r(61)})},function(t,e,r){r(135);var n=r(0).Object;t.exports=function defineProperties(t,e){return n.defineProperties(t,e)}},function(t,e,r){"use strict";r.r(e),e.default=function reduceAF(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return this.then(function(r){if(!r)throw TypeError("Cannot read property 'reduceAF' of ".concat(r));if(!Array.isArray(r))throw TypeError("".concat(r,".reduceAF is not a function"));if(!r.length&&null===e)throw TypeError("reduceAF of empty array with no initial value");return r.reduce(t,e)})}},function(t,e,r){"use strict";r.r(e),e.default=function filterAF(t){for(var e=arguments.length,r=Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];return this.then(function(e){return e.filter(t,r[0])})}},function(t,e,r){"use strict";r.r(e),e.default=function forEachAF(t){for(var e=arguments.length,r=Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];return this.then(function(e){return e.forEach(t,r[0])})}},function(t,e,r){"use strict";r.r(e),e.default=function mapAF(t){for(var e=arguments.length,r=Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];return this.then(function(e){return e.map(t,r[0])})}},function(module,__webpack_exports__,__webpack_require__){"use strict";var _babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(8),_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0__),_babel_runtime_helpers_slicedToArray__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(30),_babel_runtime_helpers_slicedToArray__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(_babel_runtime_helpers_slicedToArray__WEBPACK_IMPORTED_MODULE_1__),_logAF__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(42),_templateObject=_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default()(["\n"],["\\n"]),_templateObject2=_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default()(["("]),_templateObject3=_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default()([")"]),_templateObject4=_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default()(["/"]),_templateObject5=_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default()(["/"]),_templateObject6=_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default()([":"]),_templateObject7=_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default()(["/"]),_templateObject8=_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default()(["/"]),_templateObject9=_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default()(["/"]),_templateObject10=_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default()(["="]),setFormat=function setFormat(){var error=Error();if(!error.stack)return"";var _filter=error.stack.split(_templateObject).filter(function(t,e,r){return/logAF(\s+|\s+\[.+\]\s+)\(/.test(r[e?e-1:e])}),_filter2=_babel_runtime_helpers_slicedToArray__WEBPACK_IMPORTED_MODULE_1___default()(_filter,1),targetLine=_filter2[0],fullPath=targetLine.slice(targetLine.indexOf(_templateObject2)+1,targetLine.indexOf(_templateObject3)),target=fullPath.lastIndexOf(_templateObject4),formats={file:function file(){return"@".concat(fullPath.slice(target+1),":\n")},path:function path(){return"@".concat(fullPath,":\n")},parent:function parent(){var t=fullPath.slice(0,target).lastIndexOf(_templateObject5)+1;return"@".concat(fullPath.slice(t),":\n")},arrow:function arrow(){return"========================>"},custom:function custom(format){var _ref=fullPath.split(_templateObject6),_ref2=_babel_runtime_helpers_slicedToArray__WEBPACK_IMPORTED_MODULE_1___default()(_ref,3),path=_ref2[0],line=_ref2[1],col=_ref2[2];path=path.split(_templateObject7);var file=path.pop();path=path.join(_templateObject8);var parent="".concat(path.split(_templateObject9).pop(),"/");path+="/";var arrow=formats.arrow();return eval(format.toString())}};if("custom"===_logAF__WEBPACK_IMPORTED_MODULE_2__.default.labelFormat){var format=_logAF__WEBPACK_IMPORTED_MODULE_2__.default.fullFormat;return formats.custom(format.slice(format.indexOf(_templateObject10)+1))}return formats[_logAF__WEBPACK_IMPORTED_MODULE_2__.default.labelFormat]()};__webpack_exports__.a=setFormat},function(t,e,r){var n=r(92);t.exports=function _defineProperty(t,e,r){return e in t?n(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}},function(t,e,r){"use strict";r.r(e);var n=r(36),o=r.n(n),i=r(142),c=r.n(i),a=r(67),u=r.n(a),f=r(8),s=r.n(f),p=r(30),l=r.n(p),_=r(40),y=r.n(_),h=r(41),v=r.n(h),d=r(66),m=r.n(d),b=r(65),g=r.n(b),O=r(64),x=r.n(O),P=r(70),A=r(42),w=r(140),E=r(139),j=r(138),T=r(137),S="".concat("./lib/","classes/"),F=[["".concat("async-af"),"".concat(S,"AsyncAF")],["@async-af/wrapper","".concat(S,"AsyncAfWrapper"),P.default]],M=[["@async-af/log","".concat("".concat("./lib/","methods/other/"),"logAF"),A.default]],L="".concat("./lib/","methods/arrays/"),D=[["@async-af/map","".concat(L,"mapAF"),w.default],["@async-af/forEach","".concat(L,"forEachAF"),E.default],["@async-af/filter","".concat(L,"filterAF"),j.default],["@async-af/reduce","".concat(L,"reduceAF"),T.default]],k=(F.concat([],M,D),function pluckMethods(t){return t.map(function(t){var e=l()(t,3);return e[0],e[1],e[2]})}),W=k(M),I=k(D),C=s()(["AF"]),R=function(t){function AsyncAF(){return v()(this,AsyncAF),g()(this,x()(AsyncAF).apply(this,arguments))}return m()(AsyncAF,t),AsyncAF}(P.AsyncAfWrapperProto),B=R;(R=function AsyncAF(t){return new B(t)}).prototype=B.prototype,y()(R,B),R.prototype.constructor=R;var K=function prepForDefine(t){return t.reduce(function(t,e){var r=e.name.split(C)||[e.name],n=l()(r,1)[0];return u()(t,c()({},e.name,{value:e}),c()({},n,{value:e}))},{})};o()(P.AsyncAfWrapperProto,K(W)),o()(P.AsyncAfWrapperProto.prototype,K(I)),e.default=R}]).default});
!function webpackUniversalModuleDefinition(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define("async-af",[],e):"object"==typeof exports?exports["async-af"]=e():(t["async-af"]=t["async-af"]||{},t["async-af"]["async-af"]=e())}("undefined"!=typeof self?self:this,function(){return function(t){var e={};function __webpack_require__(r){if(e[r])return e[r].exports;var n=e[r]={i:r,l:!1,exports:{}};return t[r].call(n.exports,n,n.exports,__webpack_require__),n.l=!0,n.exports}return __webpack_require__.m=t,__webpack_require__.c=e,__webpack_require__.d=function(t,e,r){__webpack_require__.o(t,e)||Object.defineProperty(t,e,{configurable:!1,enumerable:!0,get:r})},__webpack_require__.r=function(t){Object.defineProperty(t,"__esModule",{value:!0})},__webpack_require__.n=function(t){var e=t&&t.__esModule?function getDefault(){return t.default}:function getModuleExports(){return t};return __webpack_require__.d(e,"a",e),e},__webpack_require__.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},__webpack_require__.p="",__webpack_require__(__webpack_require__.s=144)}([function(t,e){var r=t.exports={version:"2.5.5"};"number"==typeof __e&&(__e=r)},function(t,e,r){var n=r(33)("wks"),o=r(20),i=r(2).Symbol,c="function"==typeof i;(t.exports=function(t){return n[t]||(n[t]=c&&i[t]||(c?i:o)("Symbol."+t))}).store=n},function(t,e){var r=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=r)},function(t,e,r){var n=r(5);t.exports=function(t){if(!n(t))throw TypeError(t+" is not an object!");return t}},function(t,e,r){var n=r(2),o=r(0),i=r(13),c=r(9),a=r(10),u=function(t,e,r){var f,s,p,l=t&u.F,_=t&u.G,y=t&u.S,h=t&u.P,v=t&u.B,d=t&u.W,m=_?o:o[e]||(o[e]={}),b=m.prototype,g=_?n:y?n[e]:(n[e]||{}).prototype;for(f in _&&(r=e),r)(s=!l&&g&&void 0!==g[f])&&a(m,f)||(p=s?g[f]:r[f],m[f]=_&&"function"!=typeof g[f]?r[f]:v&&s?i(p,n):d&&g[f]==p?function(t){var e=function(e,r,n){if(this instanceof t){switch(arguments.length){case 0:return new t;case 1:return new t(e);case 2:return new t(e,r)}return new t(e,r,n)}return t.apply(this,arguments)};return e.prototype=t.prototype,e}(p):h&&"function"==typeof p?i(Function.call,p):p,h&&((m.virtual||(m.virtual={}))[f]=p,t&u.R&&b&&!b[f]&&c(b,f,p)))};u.F=1,u.G=2,u.S=4,u.P=8,u.B=16,u.W=32,u.U=64,u.R=128,t.exports=u},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e,r){t.exports=!r(12)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(t,e,r){var n=r(3),o=r(62),i=r(39),c=Object.defineProperty;e.f=r(6)?Object.defineProperty:function defineProperty(t,e,r){if(n(t),e=i(e,!0),n(r),o)try{return c(t,e,r)}catch(t){}if("get"in r||"set"in r)throw TypeError("Accessors not supported!");return"value"in r&&(t[e]=r.value),t}},function(t,e,r){var n=r(36),o=r(129);t.exports=function _taggedTemplateLiteral(t,e){return e||(e=t.slice(0)),o(n(t,{raw:{value:o(e)}}))}},function(t,e,r){var n=r(7),o=r(16);t.exports=r(6)?function(t,e,r){return n.f(t,e,o(1,r))}:function(t,e,r){return t[e]=r,t}},function(t,e){var r={}.hasOwnProperty;t.exports=function(t,e){return r.call(t,e)}},function(t,e){t.exports={}},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e,r){var n=r(17);t.exports=function(t,e,r){if(n(t),void 0===e)return t;switch(r){case 1:return function(r){return t.call(e,r)};case 2:return function(r,n){return t.call(e,r,n)};case 3:return function(r,n,o){return t.call(e,r,n,o)}}return function(){return t.apply(e,arguments)}}},function(t,e,r){var n=r(59),o=r(27);t.exports=function(t){return n(o(t))}},function(t,e){var r={}.toString;t.exports=function(t){return r.call(t).slice(8,-1)}},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},function(t,e,r){"use strict";var n=r(83)(!0);r(48)(String,"String",function(t){this._t=t+"",this._i=0},function(){var t,e=this._t,r=this._i;return r>=e.length?{value:void 0,done:!0}:(t=n(e,r),this._i+=t.length,{value:t,done:!1})})},function(t,e,r){var n=r(7).f,o=r(10),i=r(1)("toStringTag");t.exports=function(t,e,r){t&&!o(t=r?t:t.prototype,i)&&n(t,i,{configurable:!0,value:e})}},function(t,e){var r=0,n=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++r+n).toString(36))}},function(t,e){t.exports=!0},function(t,e,r){"use strict";var n=r(17);t.exports.f=function(t){return new function PromiseCapability(t){var e,r;this.promise=new t(function(t,n){if(void 0!==e||void 0!==r)throw TypeError("Bad Promise constructor");e=t,r=n}),this.resolve=n(e),this.reject=n(r)}(t)}},function(t,e,r){r(87);for(var n=r(2),o=r(9),i=r(11),c=r(1)("toStringTag"),a="CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,TextTrackList,TouchList".split(","),u=0;u<a.length;u++){var f=a[u],s=n[f],p=s&&s.prototype;p&&!p[c]&&o(p,c,f),i[f]=i.Array}},function(t,e,r){var n=r(27);t.exports=function(t){return Object(n(t))}},function(t,e,r){var n=r(33)("keys"),o=r(20);t.exports=function(t){return n[t]||(n[t]=o(t))}},function(t,e){var r=Math.ceil,n=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?n:r)(t)}},function(t,e){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},function(t,e,r){var n=r(60),o=r(32);t.exports=Object.keys||function keys(t){return n(t,o)}},function(t,e,r){var n=r(5),o=r(2).document,i=n(o)&&n(o.createElement);t.exports=function(t){return i?o.createElement(t):{}}},function(t,e,r){var n=r(126),o=r(125),i=r(121);t.exports=function _slicedToArray(t,e){return n(t)||o(t,e)||i()}},function(t,e,r){var n=r(15),o=r(1)("toStringTag"),i="Arguments"==n(function(){return arguments}());t.exports=function(t){var e,r,c;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(r=function(t,e){try{return t[e]}catch(t){}}(e=Object(t),o))?r:i?n(e):"Object"==(c=n(e))&&"function"==typeof e.callee?"Arguments":c}},function(t,e){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(t,e,r){var n=r(2),o=n["__core-js_shared__"]||(n["__core-js_shared__"]={});t.exports=function(t){return o[t]||(o[t]={})}},function(t,e,r){var n=r(26),o=Math.min;t.exports=function(t){return t>0?o(n(t),9007199254740991):0}},function(t,e,r){t.exports=r(80)},function(t,e,r){t.exports=r(136)},function(t,e,r){var n=r(31),o=r(1)("iterator"),i=r(11);t.exports=r(0).getIteratorMethod=function(t){if(void 0!=t)return t[o]||t["@@iterator"]||i[n(t)]}},function(t,e){e.f={}.propertyIsEnumerable},function(t,e,r){var n=r(5);t.exports=function(t,e){if(!n(t))return t;var r,o;if(e&&"function"==typeof(r=t.toString)&&!n(o=r.call(t)))return o;if("function"==typeof(r=t.valueOf)&&!n(o=r.call(t)))return o;if(!e&&"function"==typeof(r=t.toString)&&!n(o=r.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},function(t,e,r){t.exports=r(120)},function(t,e){t.exports=function _classCallCheck(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}},function(t,e,r){"use strict";r.r(e);var n=r(36),o=r.n(n),i=r(90),c=r.n(i),a=r(35),u=r.n(a),f=r(142),s=function logAF(){for(var t=arguments.length,e=Array(t),r=0;r<t;r++)e[r]=arguments[r];logAF.label&&e.unshift(logAF.setFormat());var n=Date.now();return u.a.all(e).then(function(t){if(logAF.duration){var e=((Date.now()-n)/1e3).toFixed(3);t.push("\nin ".concat(e," secs"))}logAF.wrappedLog.apply(logAF,c()(t))})};o()(s,{wrappedLog:{value:function wrappedLog(){var t;console&&console.log&&(t=console).log.apply(t,arguments)},writable:!0},wrappedWarn:{value:function wrappedWarn(){var t;console&&console.warn&&(t=console).warn.apply(t,arguments)},writable:!0},setFormat:{value:f.a,writable:!0},options:{value:function logAfOptions(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.label,r=t.duration,n=t.labelFormat;if("boolean"==typeof e&&(p.label=e),"boolean"==typeof r&&(p.duration=r),n){var o=n.slice(0,6);["file","path","parent","arrow","custom"].includes(o)?(p.labelFormat=o,p.fullFormat=n):p.wrappedWarn("AsyncAF Warning: logAF labelFormat option must be set to 'file' (default), 'path', 'parent', 'arrow', or 'custom'")}},writable:!0}}),(s.options.reset=function logAfOptionsReset(){s.label=!0,s.labelFormat="file",s.duration=!0})();var p=e.default=s},function(t,e,r){var n=r(3),o=r(5),i=r(22);t.exports=function(t,e){if(n(t),o(e)&&e.constructor===t)return e;var r=i.f(t);return(0,r.resolve)(e),r.promise}},function(t,e){t.exports=function(t){try{return{e:!1,v:t()}}catch(t){return{e:!0,v:t}}}},function(t,e,r){var n,o,i,c=r(13),a=r(76),u=r(47),f=r(29),s=r(2),p=s.process,l=s.setImmediate,_=s.clearImmediate,y=s.MessageChannel,h=s.Dispatch,v=0,d={},m=function(){var t=+this;if(d.hasOwnProperty(t)){var e=d[t];delete d[t],e()}},b=function(t){m.call(t.data)};l&&_||(l=function setImmediate(t){for(var e=[],r=1;arguments.length>r;)e.push(arguments[r++]);return d[++v]=function(){a("function"==typeof t?t:Function(t),e)},n(v),v},_=function clearImmediate(t){delete d[t]},"process"==r(15)(p)?n=function(t){p.nextTick(c(m,t,1))}:h&&h.now?n=function(t){h.now(c(m,t,1))}:y?(i=(o=new y).port2,o.port1.onmessage=b,n=c(i.postMessage,i,1)):s.addEventListener&&"function"==typeof postMessage&&!s.importScripts?(n=function(t){s.postMessage(t+"","*")},s.addEventListener("message",b,!1)):n="onreadystatechange"in f("script")?function(t){u.appendChild(f("script")).onreadystatechange=function(){u.removeChild(this),m.call(t)}}:function(t){setTimeout(c(m,t,1),0)}),t.exports={set:l,clear:_}},function(t,e,r){var n=r(3),o=r(17),i=r(1)("species");t.exports=function(t,e){var r,c=n(t).constructor;return void 0===c||void 0==(r=n(c)[i])?e:o(r)}},function(t,e,r){var n=r(2).document;t.exports=n&&n.documentElement},function(t,e,r){"use strict";var n=r(21),o=r(4),i=r(57),c=r(9),a=r(11),u=r(84),f=r(19),s=r(55),p=r(1)("iterator"),l=!([].keys&&"next"in[].keys()),_=function(){return this};t.exports=function(t,e,r,y,h,v,d){u(r,e,y);var m,b,g,O=function(t){if(!l&&t in w)return w[t];switch(t){case"keys":return function keys(){return new r(this,t)};case"values":return function values(){return new r(this,t)}}return function entries(){return new r(this,t)}},x=e+" Iterator",A="values"==h,P=!1,w=t.prototype,E=w[p]||w["@@iterator"]||h&&w[h],j=E||O(h),T=h?A?O("entries"):j:void 0,F="Array"==e&&w.entries||E;if(F&&(g=s(F.call(new t)))!==Object.prototype&&g.next&&(f(g,x,!0),n||"function"==typeof g[p]||c(g,p,_)),A&&E&&"values"!==E.name&&(P=!0,j=function values(){return E.call(this)}),n&&!d||!l&&!P&&w[p]||c(w,p,j),a[e]=j,a[x]=_,h)if(m={values:A?j:O("values"),keys:v?j:O("keys"),entries:T},d)for(b in m)b in w||i(w,b,m[b]);else o(o.P+o.F*(l||P),e,m);return m}},function(t,e,r){var n=r(1)("iterator"),o=!1;try{var i=[7][n]();i.return=function(){o=!0},Array.from(i,function(){throw 2})}catch(t){}t.exports=function(t,e){if(!e&&!o)return!1;var r=!1;try{var i=[7],c=i[n]();c.next=function(){return{done:r=!0}},i[n]=function(){return c},t(i)}catch(t){}return r}},function(t,e,r){var n=r(11),o=r(1)("iterator"),i=Array.prototype;t.exports=function(t){return void 0!==t&&(n.Array===t||i[o]===t)}},function(t,e,r){var n=r(3);t.exports=function(t,e,r,o){try{return o?e(n(r)[0],r[1]):e(r)}catch(e){var i=t.return;throw void 0!==i&&n(i.call(t)),e}}},function(t,e){},function(t,e,r){var n=r(2),o=r(0),i=r(21),c=r(54),a=r(7).f;t.exports=function(t){var e=o.Symbol||(o.Symbol=i?{}:n.Symbol||{});"_"==t.charAt(0)||t in e||a(e,t,{value:c.f(t)})}},function(t,e,r){e.f=r(1)},function(t,e,r){var n=r(10),o=r(24),i=r(25)("IE_PROTO"),c=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=o(t),n(t,i)?t[i]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?c:null}},function(t,e,r){var n=r(3),o=r(61),i=r(32),c=r(25)("IE_PROTO"),a=function(){},u=function(){var t,e=r(29)("iframe"),n=i.length;for(e.style.display="none",r(47).appendChild(e),e.src="javascript:",(t=e.contentWindow.document).open(),t.write("<script>document.F=Object<\/script>"),t.close(),u=t.F;n--;)delete u.prototype[i[n]];return u()};t.exports=Object.create||function create(t,e){var r;return null!==t?(a.prototype=n(t),r=new a,a.prototype=null,r[c]=t):r=u(),void 0===e?r:o(r,e)}},function(t,e,r){t.exports=r(9)},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e,r){var n=r(15);t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==n(t)?t.split(""):Object(t)}},function(t,e,r){var n=r(10),o=r(14),i=r(89)(!1),c=r(25)("IE_PROTO");t.exports=function(t,e){var r,a=o(t),u=0,f=[];for(r in a)r!=c&&n(a,r)&&f.push(r);for(;e.length>u;)n(a,r=e[u++])&&(~i(f,r)||f.push(r));return f}},function(t,e,r){var n=r(7),o=r(3),i=r(28);t.exports=r(6)?Object.defineProperties:function defineProperties(t,e){o(t);for(var r,c=i(e),a=c.length,u=0;a>u;)n.f(t,r=c[u++],e[r]);return t}},function(t,e,r){t.exports=!r(6)&&!r(12)(function(){return 7!=Object.defineProperty(r(29)("div"),"a",{get:function(){return 7}}).a})},function(t,e,r){var n=r(116),o=r(114);function _typeof2(t){return(_typeof2="function"==typeof o&&"symbol"==typeof n?function _typeof2(t){return typeof t}:function _typeof2(t){return t&&"function"==typeof o&&t.constructor===o&&t!==o.prototype?"symbol":typeof t})(t)}function _typeof(e){return"function"==typeof o&&"symbol"===_typeof2(n)?t.exports=_typeof=function _typeof(t){return _typeof2(t)}:t.exports=_typeof=function _typeof(t){return t&&"function"==typeof o&&t.constructor===o&&t!==o.prototype?"symbol":_typeof2(t)},_typeof(e)}t.exports=_typeof},function(t,e,r){var n=r(105);function _getPrototypeOf(e){return t.exports=_getPrototypeOf=n||function _getPrototypeOf(t){return t.__proto__},_getPrototypeOf(e)}t.exports=_getPrototypeOf},function(t,e,r){var n=r(63),o=r(106);t.exports=function _possibleConstructorReturn(t,e){return!e||"object"!==n(e)&&"function"!=typeof e?o(t):e}},function(t,e,r){var n=r(117);t.exports=function _inherits(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");n(t.prototype,e&&e.prototype),e&&n(t,e)}},function(t,e,r){t.exports=r(132)},function(t,e,r){var n=r(4),o=r(0),i=r(12);t.exports=function(t,e){var r=(o.Object||{})[t]||Object[t],c={};c[t]=e(r),n(n.S+n.F*i(function(){r(1)}),"Object",c)}},function(t,e,r){var n=r(20)("meta"),o=r(5),i=r(10),c=r(7).f,a=0,u=Object.isExtensible||function(){return!0},f=!r(12)(function(){return u(Object.preventExtensions({}))}),s=function(t){c(t,n,{value:{i:"O"+ ++a,w:{}}})},p=t.exports={KEY:n,NEED:!1,fastKey:function(t,e){if(!o(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!i(t,n)){if(!u(t))return"F";if(!e)return"E";s(t)}return t[n].i},getWeak:function(t,e){if(!i(t,n)){if(!u(t))return!0;if(!e)return!1;s(t)}return t[n].w},onFreeze:function(t){return f&&p.NEED&&u(t)&&!i(t,n)&&s(t),t}}},function(t,e,r){"use strict";r.r(e);var n=r(40),o=r.n(n),i=r(66),c=r.n(i),a=r(65),u=r.n(a),f=r(64),s=r.n(f),p=r(35),l=r.n(p),_=r(41),y=r.n(_),h=r(91),v=r.n(h),d=r(67),m=r.n(d),b=r(63),g=r.n(b);r.d(e,"AsyncAfWrapperProto",function(){return O});var O=function(){function AsyncAfWrapperProto(t){y()(this,AsyncAfWrapperProto),this.data=l.a[Array.isArray(t)?"all":"resolve"](t)}return v()(AsyncAfWrapperProto,[{key:"then",value:function then(t,e){return new this.constructor(this.data.then(t,e))}},{key:"catch",value:function _catch(t){return this.then(null,t)}}]),AsyncAfWrapperProto}(),x=function(t){function AsyncAfWrapper(){return y()(this,AsyncAfWrapper),u()(this,s()(AsyncAfWrapper).apply(this,arguments))}return c()(AsyncAfWrapper,t),AsyncAfWrapper}(O),A=x;(x=function AsyncAfWrapper(t){return new A(t)}).prototype=A.prototype,o()(x,A),x.prototype.constructor=x,O.use=function use(t){if("object"!==g()(t))throw new TypeError("use method accepts an Object containing the methods you'd like to add to the AsyncAF prototype");m()(this.prototype,t)},e.default=x},function(t,e,r){"use strict";var n=r(4),o=r(22),i=r(44);n(n.S,"Promise",{try:function(t){var e=o.f(this),r=i(t);return(r.e?e.reject:e.resolve)(r.v),e.promise}})},function(t,e,r){"use strict";var n=r(4),o=r(0),i=r(2),c=r(46),a=r(43);n(n.P+n.R,"Promise",{finally:function(t){var e=c(this,o.Promise||i.Promise),r="function"==typeof t;return this.then(r?function(r){return a(e,t()).then(function(){return r})}:t,r?function(r){return a(e,t()).then(function(){throw r})}:t)}})},function(t,e,r){"use strict";var n=r(2),o=r(0),i=r(7),c=r(6),a=r(1)("species");t.exports=function(t){var e="function"==typeof o[t]?o[t]:n[t];c&&e&&!e[a]&&i.f(e,a,{configurable:!0,get:function(){return this}})}},function(t,e,r){var n=r(9);t.exports=function(t,e,r){for(var o in e)r&&t[o]?t[o]=e[o]:n(t,o,e[o]);return t}},function(t,e,r){var n=r(2),o=r(45).set,i=n.MutationObserver||n.WebKitMutationObserver,c=n.process,a=n.Promise,u="process"==r(15)(c);t.exports=function(){var t,e,r,f=function(){var n,o;for(u&&(n=c.domain)&&n.exit();t;){o=t.fn,t=t.next;try{o()}catch(n){throw t?r():e=void 0,n}}e=void 0,n&&n.enter()};if(u)r=function(){c.nextTick(f)};else if(!i||n.navigator&&n.navigator.standalone)if(a&&a.resolve){var s=a.resolve();r=function(){s.then(f)}}else r=function(){o.call(n,f)};else{var p=!0,l=document.createTextNode("");new i(f).observe(l,{characterData:!0}),r=function(){l.data=p=!p}}return function(n){var o={fn:n,next:void 0};e&&(e.next=o),t||(t=o,r()),e=o}}},function(t,e){t.exports=function(t,e,r){var n=void 0===r;switch(e.length){case 0:return n?t():t.call(r);case 1:return n?t(e[0]):t.call(r,e[0]);case 2:return n?t(e[0],e[1]):t.call(r,e[0],e[1]);case 3:return n?t(e[0],e[1],e[2]):t.call(r,e[0],e[1],e[2]);case 4:return n?t(e[0],e[1],e[2],e[3]):t.call(r,e[0],e[1],e[2],e[3])}return t.apply(r,e)}},function(t,e,r){var n=r(13),o=r(51),i=r(50),c=r(3),a=r(34),u=r(37),f={},s={};(e=t.exports=function(t,e,r,p,l){var _,y,h,v,d=l?function(){return t}:u(t),m=n(r,p,e?2:1),b=0;if("function"!=typeof d)throw TypeError(t+" is not iterable!");if(i(d)){for(_=a(t.length);_>b;b++)if((v=e?m(c(y=t[b])[0],y[1]):m(t[b]))===f||v===s)return v}else for(h=d.call(t);!(y=h.next()).done;)if((v=o(h,m,y.value,e))===f||v===s)return v}).BREAK=f,e.RETURN=s},function(t,e){t.exports=function(t,e,r,n){if(!(t instanceof e)||void 0!==n&&n in t)throw TypeError(r+": incorrect invocation!");return t}},function(t,e,r){"use strict";var n,o,i,c,a=r(21),u=r(2),f=r(13),s=r(31),p=r(4),l=r(5),_=r(17),y=r(78),h=r(77),v=r(46),d=r(45).set,m=r(75)(),b=r(22),g=r(44),O=r(43),x=u.TypeError,A=u.process,P=u.Promise,w="process"==s(A),E=function(){},j=o=b.f,T=!!function(){try{var t=P.resolve(1),e=(t.constructor={})[r(1)("species")]=function(t){t(E,E)};return(w||"function"==typeof PromiseRejectionEvent)&&t.then(E)instanceof e}catch(t){}}(),F=function(t){var e;return!(!l(t)||"function"!=typeof(e=t.then))&&e},S=function(t,e){if(!t._n){t._n=!0;var r=t._c;m(function(){for(var n=t._v,o=1==t._s,i=0,c=function(e){var r,i,c,a=o?e.ok:e.fail,u=e.resolve,f=e.reject,s=e.domain;try{a?(o||(2==t._h&&D(t),t._h=1),!0===a?r=n:(s&&s.enter(),r=a(n),s&&(s.exit(),c=!0)),r===e.promise?f(x("Promise-chain cycle")):(i=F(r))?i.call(r,u,f):u(r)):f(n)}catch(t){s&&!c&&s.exit(),f(t)}};r.length>i;)c(r[i++]);t._c=[],t._n=!1,e&&!t._h&&M(t)})}},M=function(t){d.call(u,function(){var e,r,n,o=t._v,i=L(t);if(i&&(e=g(function(){w?A.emit("unhandledRejection",o,t):(r=u.onunhandledrejection)?r({promise:t,reason:o}):(n=u.console)&&n.error&&n.error("Unhandled promise rejection",o)}),t._h=w||L(t)?2:1),t._a=void 0,i&&e.e)throw e.v})},L=function(t){return 1!==t._h&&0===(t._a||t._c).length},D=function(t){d.call(u,function(){var e;w?A.emit("rejectionHandled",t):(e=u.onrejectionhandled)&&e({promise:t,reason:t._v})})},k=function(t){var e=this;e._d||(e._d=!0,(e=e._w||e)._v=t,e._s=2,e._a||(e._a=e._c.slice()),S(e,!0))},W=function(t){var e,r=this;if(!r._d){r._d=!0,r=r._w||r;try{if(r===t)throw x("Promise can't be resolved itself");(e=F(t))?m(function(){var n={_w:r,_d:!1};try{e.call(t,f(W,n,1),f(k,n,1))}catch(t){k.call(n,t)}}):(r._v=t,r._s=1,S(r,!1))}catch(t){k.call({_w:r,_d:!1},t)}}};T||(P=function Promise(t){y(this,P,"Promise","_h"),_(t),n.call(this);try{t(f(W,this,1),f(k,this,1))}catch(t){k.call(this,t)}},(n=function Promise(t){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1}).prototype=r(74)(P.prototype,{then:function then(t,e){var r=j(v(this,P));return r.ok="function"!=typeof t||t,r.fail="function"==typeof e&&e,r.domain=w?A.domain:void 0,this._c.push(r),this._a&&this._a.push(r),this._s&&S(this,!1),r.promise},catch:function(t){return this.then(void 0,t)}}),i=function(){var t=new n;this.promise=t,this.resolve=f(W,t,1),this.reject=f(k,t,1)},b.f=j=function(t){return t===P||t===c?new i(t):o(t)}),p(p.G+p.W+p.F*!T,{Promise:P}),r(19)(P,"Promise"),r(73)("Promise"),c=r(0).Promise,p(p.S+p.F*!T,"Promise",{reject:function reject(t){var e=j(this);return(0,e.reject)(t),e.promise}}),p(p.S+p.F*(a||!T),"Promise",{resolve:function resolve(t){return O(a&&this===c?P:this,t)}}),p(p.S+p.F*!(T&&r(49)(function(t){P.all(t).catch(E)})),"Promise",{all:function all(t){var e=this,r=j(e),n=r.resolve,o=r.reject,i=g(function(){var r=[],i=0,c=1;h(t,!1,function(t){var a=i++,u=!1;r.push(void 0),c++,e.resolve(t).then(function(t){u||(u=!0,r[a]=t,--c||n(r))},o)}),--c||n(r)});return i.e&&o(i.v),r.promise},race:function race(t){var e=this,r=j(e),n=r.reject,o=g(function(){h(t,!1,function(t){e.resolve(t).then(r.resolve,n)})});return o.e&&n(o.v),r.promise}})},function(t,e,r){r(52),r(18),r(23),r(79),r(72),r(71),t.exports=r(0).Promise},function(t,e,r){var n=r(60),o=r(32).concat("length","prototype");e.f=Object.getOwnPropertyNames||function getOwnPropertyNames(t){return n(t,o)}},function(t,e,r){var n=r(38),o=r(16),i=r(14),c=r(39),a=r(10),u=r(62),f=Object.getOwnPropertyDescriptor;e.f=r(6)?f:function getOwnPropertyDescriptor(t,e){if(t=i(t),e=c(e,!0),u)try{return f(t,e)}catch(t){}if(a(t,e))return o(!n.f.call(t,e),t[e])}},function(t,e,r){var n=r(26),o=r(27);t.exports=function(t){return function(e,r){var i,c,a=o(e)+"",u=n(r),f=a.length;return u<0||u>=f?t?"":void 0:(i=a.charCodeAt(u))<55296||i>56319||u+1===f||(c=a.charCodeAt(u+1))<56320||c>57343?t?a.charAt(u):i:t?a.slice(u,u+2):c-56320+(i-55296<<10)+65536}}},function(t,e,r){"use strict";var n=r(56),o=r(16),i=r(19),c={};r(9)(c,r(1)("iterator"),function(){return this}),t.exports=function(t,e,r){t.prototype=n(c,{next:o(1,r)}),i(t,e+" Iterator")}},function(t,e){t.exports=function(t,e){return{value:e,done:!!t}}},function(t,e){t.exports=function(){}},function(t,e,r){"use strict";var n=r(86),o=r(85),i=r(11),c=r(14);t.exports=r(48)(Array,"Array",function(t,e){this._t=c(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,r=this._i++;return!t||r>=t.length?(this._t=void 0,o(1)):o(0,"keys"==e?r:"values"==e?t[r]:[r,t[r]])},"values"),i.Arguments=i.Array,n("keys"),n("values"),n("entries")},function(t,e,r){var n=r(26),o=Math.max,i=Math.min;t.exports=function(t,e){return(t=n(t))<0?o(t+e,0):i(t,e)}},function(t,e,r){var n=r(14),o=r(34),i=r(88);t.exports=function(t){return function(e,r,c){var a,u=n(e),f=o(u.length),s=i(c,f);if(t&&r!=r){for(;f>s;)if((a=u[s++])!=a)return!0}else for(;f>s;s++)if((t||s in u)&&u[s]===r)return t||s||0;return!t&&-1}}},function(t,e,r){var n=r(102),o=r(101),i=r(93);t.exports=function _toConsumableArray(t){return n(t)||o(t)||i()}},function(t,e,r){var n=r(92);function _defineProperties(t,e){for(var r=0;r<e.length;r++){var o=e[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),n(t,o.key,o)}}t.exports=function _createClass(t,e,r){return e&&_defineProperties(t.prototype,e),r&&_defineProperties(t,r),t}},function(t,e,r){t.exports=r(134)},function(t,e){t.exports=function _nonIterableSpread(){throw new TypeError("Invalid attempt to spread non-iterable instance")}},function(t,e,r){var n=r(31),o=r(1)("iterator"),i=r(11);t.exports=r(0).isIterable=function(t){var e=Object(t);return void 0!==e[o]||"@@iterator"in e||i.hasOwnProperty(n(e))}},function(t,e,r){r(23),r(18),t.exports=r(94)},function(t,e,r){t.exports=r(95)},function(t,e,r){"use strict";var n=r(7),o=r(16);t.exports=function(t,e,r){e in t?n.f(t,e,o(0,r)):t[e]=r}},function(t,e,r){"use strict";var n=r(13),o=r(4),i=r(24),c=r(51),a=r(50),u=r(34),f=r(97),s=r(37);o(o.S+o.F*!r(49)(function(t){Array.from(t)}),"Array",{from:function from(t){var e,r,o,p,l=i(t),_="function"==typeof this?this:Array,y=arguments.length,h=y>1?arguments[1]:void 0,v=void 0!==h,d=0,m=s(l);if(v&&(h=n(h,y>2?arguments[2]:void 0,2)),void 0==m||_==Array&&a(m))for(r=new _(e=u(l.length));e>d;d++)f(r,d,v?h(l[d],d):l[d]);else for(p=m.call(l),r=new _;!(o=p.next()).done;d++)f(r,d,v?c(p,h,[o.value,d],!0):o.value);return r.length=d,r}})},function(t,e,r){r(18),r(98),t.exports=r(0).Array.from},function(t,e,r){t.exports=r(99)},function(t,e,r){var n=r(100),o=r(96);t.exports=function _iterableToArray(t){if(o(Object(t))||"[object Arguments]"===Object.prototype.toString.call(t))return n(t)}},function(t,e){t.exports=function _arrayWithoutHoles(t){if(Array.isArray(t)){for(var e=0,r=Array(t.length);e<t.length;e++)r[e]=t[e];return r}}},function(t,e,r){var n=r(24),o=r(55);r(68)("getPrototypeOf",function(){return function getPrototypeOf(t){return o(n(t))}})},function(t,e,r){r(103),t.exports=r(0).Object.getPrototypeOf},function(t,e,r){t.exports=r(104)},function(t,e){t.exports=function _assertThisInitialized(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}},function(t,e,r){r(53)("observable")},function(t,e,r){r(53)("asyncIterator")},function(t,e,r){var n=r(14),o=r(81).f,i={}.toString,c="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];t.exports.f=function getOwnPropertyNames(t){return c&&"[object Window]"==i.call(t)?function(t){try{return o(t)}catch(t){return c.slice()}}(t):o(n(t))}},function(t,e,r){var n=r(15);t.exports=Array.isArray||function isArray(t){return"Array"==n(t)}},function(t,e,r){var n=r(28),o=r(58),i=r(38);t.exports=function(t){var e=n(t),r=o.f;if(r)for(var c,a=r(t),u=i.f,f=0;a.length>f;)u.call(t,c=a[f++])&&e.push(c);return e}},function(t,e,r){"use strict";var n=r(2),o=r(10),i=r(6),c=r(4),a=r(57),u=r(69).KEY,f=r(12),s=r(33),p=r(19),l=r(20),_=r(1),y=r(54),h=r(53),v=r(111),d=r(110),m=r(3),b=r(5),g=r(14),O=r(39),x=r(16),A=r(56),P=r(109),w=r(82),E=r(7),j=r(28),T=w.f,F=E.f,S=P.f,M=n.Symbol,L=n.JSON,D=L&&L.stringify,k=_("_hidden"),W=_("toPrimitive"),I={}.propertyIsEnumerable,C=s("symbol-registry"),R=s("symbols"),B=s("op-symbols"),K=Object.prototype,U="function"==typeof M,N=n.QObject,q=!N||!N.prototype||!N.prototype.findChild,G=i&&f(function(){return 7!=A(F({},"a",{get:function(){return F(this,"a",{value:7}).a}})).a})?function(t,e,r){var n=T(K,e);n&&delete K[e],F(t,e,r),n&&t!==K&&F(K,e,n)}:F,z=function(t){var e=R[t]=A(M.prototype);return e._k=t,e},H=U&&"symbol"==typeof M.iterator?function(t){return"symbol"==typeof t}:function(t){return t instanceof M},V=function defineProperty(t,e,r){return t===K&&V(B,e,r),m(t),e=O(e,!0),m(r),o(R,e)?(r.enumerable?(o(t,k)&&t[k][e]&&(t[k][e]=!1),r=A(r,{enumerable:x(0,!1)})):(o(t,k)||F(t,k,x(1,{})),t[k][e]=!0),G(t,e,r)):F(t,e,r)},J=function defineProperties(t,e){m(t);for(var r,n=v(e=g(e)),o=0,i=n.length;i>o;)V(t,r=n[o++],e[r]);return t},Y=function propertyIsEnumerable(t){var e=I.call(this,t=O(t,!0));return!(this===K&&o(R,t)&&!o(B,t))&&(!(e||!o(this,t)||!o(R,t)||o(this,k)&&this[k][t])||e)},Q=function getOwnPropertyDescriptor(t,e){if(t=g(t),e=O(e,!0),t!==K||!o(R,e)||o(B,e)){var r=T(t,e);return!r||!o(R,e)||o(t,k)&&t[k][e]||(r.enumerable=!0),r}},X=function getOwnPropertyNames(t){for(var e,r=S(g(t)),n=[],i=0;r.length>i;)o(R,e=r[i++])||e==k||e==u||n.push(e);return n},Z=function getOwnPropertySymbols(t){for(var e,r=t===K,n=S(r?B:g(t)),i=[],c=0;n.length>c;)!o(R,e=n[c++])||r&&!o(K,e)||i.push(R[e]);return i};U||(a((M=function Symbol(){if(this instanceof M)throw TypeError("Symbol is not a constructor!");var t=l(arguments.length>0?arguments[0]:void 0),e=function(r){this===K&&e.call(B,r),o(this,k)&&o(this[k],t)&&(this[k][t]=!1),G(this,t,x(1,r))};return i&&q&&G(K,t,{configurable:!0,set:e}),z(t)}).prototype,"toString",function toString(){return this._k}),w.f=Q,E.f=V,r(81).f=P.f=X,r(38).f=Y,r(58).f=Z,i&&!r(21)&&a(K,"propertyIsEnumerable",Y,!0),y.f=function(t){return z(_(t))}),c(c.G+c.W+c.F*!U,{Symbol:M});for(var $="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),tt=0;$.length>tt;)_($[tt++]);for(var et=j(_.store),rt=0;et.length>rt;)h(et[rt++]);c(c.S+c.F*!U,"Symbol",{for:function(t){return o(C,t+="")?C[t]:C[t]=M(t)},keyFor:function keyFor(t){if(!H(t))throw TypeError(t+" is not a symbol!");for(var e in C)if(C[e]===t)return e},useSetter:function(){q=!0},useSimple:function(){q=!1}}),c(c.S+c.F*!U,"Object",{create:function create(t,e){return void 0===e?A(t):J(A(t),e)},defineProperty:V,defineProperties:J,getOwnPropertyDescriptor:Q,getOwnPropertyNames:X,getOwnPropertySymbols:Z}),L&&c(c.S+c.F*(!U||f(function(){var t=M();return"[null]"!=D([t])||"{}"!=D({a:t})||"{}"!=D(Object(t))})),"JSON",{stringify:function stringify(t){for(var e,r,n=[t],o=1;arguments.length>o;)n.push(arguments[o++]);if(r=e=n[1],(b(e)||void 0!==t)&&!H(t))return d(e)||(e=function(t,e){if("function"==typeof r&&(e=r.call(this,t,e)),!H(e))return e}),n[1]=e,D.apply(L,n)}}),M.prototype[W]||r(9)(M.prototype,W,M.prototype.valueOf),p(M,"Symbol"),p(Math,"Math",!0),p(n.JSON,"JSON",!0)},function(t,e,r){r(112),r(52),r(108),r(107),t.exports=r(0).Symbol},function(t,e,r){t.exports=r(113)},function(t,e,r){r(18),r(23),t.exports=r(54).f("iterator")},function(t,e,r){t.exports=r(115)},function(t,e,r){var n=r(40);function _setPrototypeOf(e,r){return t.exports=_setPrototypeOf=n||function _setPrototypeOf(t,e){return t.__proto__=e,t},_setPrototypeOf(e,r)}t.exports=_setPrototypeOf},function(t,e,r){var n=r(5),o=r(3),i=function(t,e){if(o(t),!n(e)&&null!==e)throw TypeError(e+": can't set as prototype!")};t.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(t,e,n){try{(n=r(13)(Function.call,r(82).f(Object.prototype,"__proto__").set,2))(t,[]),e=!(t instanceof Array)}catch(t){e=!0}return function setPrototypeOf(t,r){return i(t,r),e?t.__proto__=r:n(t,r),t}}({},!1):void 0),check:i}},function(t,e,r){var n=r(4);n(n.S,"Object",{setPrototypeOf:r(118).set})},function(t,e,r){r(119),t.exports=r(0).Object.setPrototypeOf},function(t,e){t.exports=function _nonIterableRest(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}},function(t,e,r){var n=r(3),o=r(37);t.exports=r(0).getIterator=function(t){var e=o(t);if("function"!=typeof e)throw TypeError(t+" is not iterable!");return n(e.call(t))}},function(t,e,r){r(23),r(18),t.exports=r(122)},function(t,e,r){t.exports=r(123)},function(t,e,r){var n=r(124);t.exports=function _iterableToArrayLimit(t,e){var r=[],o=!0,i=!1,c=void 0;try{for(var a,u=n(t);!(o=(a=u.next()).done)&&(r.push(a.value),!e||r.length!==e);o=!0);}catch(t){i=!0,c=t}finally{try{o||null==u.return||u.return()}finally{if(i)throw c}}return r}},function(t,e){t.exports=function _arrayWithHoles(t){if(Array.isArray(t))return t}},function(t,e,r){var n=r(5),o=r(69).onFreeze;r(68)("freeze",function(t){return function freeze(e){return t&&n(e)?t(o(e)):e}})},function(t,e,r){r(127),t.exports=r(0).Object.freeze},function(t,e,r){t.exports=r(128)},function(t,e,r){"use strict";var n=r(28),o=r(58),i=r(38),c=r(24),a=r(59),u=Object.assign;t.exports=!u||r(12)(function(){var t={},e={},r=Symbol(),n="abcdefghijklmnopqrst";return t[r]=7,n.split("").forEach(function(t){e[t]=t}),7!=u({},t)[r]||Object.keys(u({},e)).join("")!=n})?function assign(t,e){for(var r=c(t),u=arguments.length,f=1,s=o.f,p=i.f;u>f;)for(var l,_=a(arguments[f++]),y=s?n(_).concat(s(_)):n(_),h=y.length,v=0;h>v;)p.call(_,l=y[v++])&&(r[l]=_[l]);return r}:u},function(t,e,r){var n=r(4);n(n.S+n.F,"Object",{assign:r(130)})},function(t,e,r){r(131),t.exports=r(0).Object.assign},function(t,e,r){var n=r(4);n(n.S+n.F*!r(6),"Object",{defineProperty:r(7).f})},function(t,e,r){r(133);var n=r(0).Object;t.exports=function defineProperty(t,e,r){return n.defineProperty(t,e,r)}},function(t,e,r){var n=r(4);n(n.S+n.F*!r(6),"Object",{defineProperties:r(61)})},function(t,e,r){r(135);var n=r(0).Object;t.exports=function defineProperties(t,e){return n.defineProperties(t,e)}},function(t,e,r){"use strict";r.r(e),e.default=function everyAF(t){for(var e=arguments.length,r=Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];return this.then(function(e){if(!e)throw TypeError("Cannot read property 'everyAF' of ".concat(e));if(!Array.isArray(e))throw TypeError("".concat(e,".everyAF is not a function"));return e.every(t,r[0])})}},function(t,e,r){"use strict";r.r(e),e.default=function reduceAF(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return this.then(function(r){if(!r)throw TypeError("Cannot read property 'reduceAF' of ".concat(r));if(!Array.isArray(r))throw TypeError("".concat(r,".reduceAF is not a function"));if(!r.length&&null===e)throw TypeError("reduceAF of empty array with no initial value");return r.reduce(t,e)})}},function(t,e,r){"use strict";r.r(e),e.default=function filterAF(t){for(var e=arguments.length,r=Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];return this.then(function(e){return e.filter(t,r[0])})}},function(t,e,r){"use strict";r.r(e),e.default=function forEachAF(t){for(var e=arguments.length,r=Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];return this.then(function(e){return e.forEach(t,r[0])})}},function(t,e,r){"use strict";r.r(e),e.default=function mapAF(t){for(var e=arguments.length,r=Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];return this.then(function(e){return e.map(t,r[0])})}},function(module,__webpack_exports__,__webpack_require__){"use strict";var _babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(8),_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0__),_babel_runtime_helpers_slicedToArray__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(30),_babel_runtime_helpers_slicedToArray__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(_babel_runtime_helpers_slicedToArray__WEBPACK_IMPORTED_MODULE_1__),_logAF__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(42),_templateObject=_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default()(["\n"],["\\n"]),_templateObject2=_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default()(["("]),_templateObject3=_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default()([")"]),_templateObject4=_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default()(["/"]),_templateObject5=_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default()(["/"]),_templateObject6=_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default()([":"]),_templateObject7=_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default()(["/"]),_templateObject8=_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default()(["/"]),_templateObject9=_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default()(["/"]),_templateObject10=_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default()(["="]),setFormat=function setFormat(){var error=Error();if(!error.stack)return"";var _filter=error.stack.split(_templateObject).filter(function(t,e,r){return/logAF(\s+|\s+\[.+\]\s+)\(/.test(r[e?e-1:e])}),_filter2=_babel_runtime_helpers_slicedToArray__WEBPACK_IMPORTED_MODULE_1___default()(_filter,1),targetLine=_filter2[0],fullPath=targetLine.slice(targetLine.indexOf(_templateObject2)+1,targetLine.indexOf(_templateObject3)),target=fullPath.lastIndexOf(_templateObject4),formats={file:function file(){return"@".concat(fullPath.slice(target+1),":\n")},path:function path(){return"@".concat(fullPath,":\n")},parent:function parent(){var t=fullPath.slice(0,target).lastIndexOf(_templateObject5)+1;return"@".concat(fullPath.slice(t),":\n")},arrow:function arrow(){return"========================>"},custom:function custom(format){var _ref=fullPath.split(_templateObject6),_ref2=_babel_runtime_helpers_slicedToArray__WEBPACK_IMPORTED_MODULE_1___default()(_ref,3),path=_ref2[0],line=_ref2[1],col=_ref2[2];path=path.split(_templateObject7);var file=path.pop();path=path.join(_templateObject8);var parent="".concat(path.split(_templateObject9).pop(),"/");path+="/";var arrow=formats.arrow();return eval(format.toString())}};if("custom"===_logAF__WEBPACK_IMPORTED_MODULE_2__.default.labelFormat){var format=_logAF__WEBPACK_IMPORTED_MODULE_2__.default.fullFormat;return formats.custom(format.slice(format.indexOf(_templateObject10)+1))}return formats[_logAF__WEBPACK_IMPORTED_MODULE_2__.default.labelFormat]()};__webpack_exports__.a=setFormat},function(t,e,r){var n=r(92);t.exports=function _defineProperty(t,e,r){return e in t?n(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}},function(t,e,r){"use strict";r.r(e);var n=r(36),o=r.n(n),i=r(143),c=r.n(i),a=r(67),u=r.n(a),f=r(8),s=r.n(f),p=r(30),l=r.n(p),_=r(40),y=r.n(_),h=r(41),v=r.n(h),d=r(66),m=r.n(d),b=r(65),g=r.n(b),O=r(64),x=r.n(O),A=r(70),P=r(42),w=r(141),E=r(140),j=r(139),T=r(138),F=r(137),S="".concat("./lib/","classes/"),M=[["".concat("async-af"),"".concat(S,"AsyncAF")],["@async-af/wrapper","".concat(S,"AsyncAfWrapper"),A.default]],L=[["@async-af/log","".concat("".concat("./lib/","methods/other/"),"logAF"),P.default]],D="".concat("./lib/","methods/arrays/"),k=[["@async-af/map","".concat(D,"mapAF"),w.default],["@async-af/forEach","".concat(D,"forEachAF"),E.default],["@async-af/filter","".concat(D,"filterAF"),j.default],["@async-af/reduce","".concat(D,"reduceAF"),T.default],["@async-af/every","".concat(D,"everyAF"),F.default]],W=(M.concat([],L,k),function pluckMethods(t){return t.map(function(t){var e=l()(t,3);return e[0],e[1],e[2]})}),I=W(L),C=W(k),R=s()(["AF"]),B=function(t){function AsyncAF(){return v()(this,AsyncAF),g()(this,x()(AsyncAF).apply(this,arguments))}return m()(AsyncAF,t),AsyncAF}(A.AsyncAfWrapperProto),K=B;(B=function AsyncAF(t){return new K(t)}).prototype=K.prototype,y()(B,K),B.prototype.constructor=B;var U=function prepForDefine(t){return t.reduce(function(t,e){var r=e.name.split(R)||[e.name],n=l()(r,1)[0];return u()(t,c()({},e.name,{value:e}),c()({},n,{value:e}))},{})};o()(A.AsyncAfWrapperProto,U(I)),o()(A.AsyncAfWrapperProto.prototype,U(C)),e.default=B}]).default});
//# sourceMappingURL=min.js.map
/*!
* AsyncAF (async/await fun)
*
* async-af v3.1.0
* async-af v3.2.0
*

@@ -10,3 +10,3 @@ * Copyright (c) 2017-present, Scott Rudiger (https://github.com/ScottRudiger)

*/
!function webpackUniversalModuleDefinition(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define("async-af",[],t):"object"==typeof exports?exports["async-af"]=t():(e["async-af"]=e["async-af"]||{},e["async-af"]["async-af"]=t())}("undefined"!=typeof self?self:this,function(){return function(e){var t={};function __webpack_require__(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,__webpack_require__),o.l=!0,o.exports}return __webpack_require__.m=e,__webpack_require__.c=t,__webpack_require__.d=function(e,t,r){__webpack_require__.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:r})},__webpack_require__.r=function(e){Object.defineProperty(e,"__esModule",{value:!0})},__webpack_require__.n=function(e){var t=e&&e.__esModule?function getDefault(){return e.default}:function getModuleExports(){return e};return __webpack_require__.d(t,"a",t),t},__webpack_require__.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},__webpack_require__.p="",__webpack_require__(__webpack_require__.s=7)}([function(e,t,r){"use strict";r.r(t);var o=r(6);const n=function logAF(...e){logAF.label&&e.unshift(logAF.setFormat());const t=Date.now();return Promise.all(e).then(e=>{if(logAF.duration){const r=((Date.now()-t)/1e3).toFixed(3);e.push(`\nin ${r} secs`)}logAF.wrappedLog(...e)})};Object.defineProperties(n,{wrappedLog:{value:(...e)=>{console&&console.log&&console.log(...e)},writable:!0},wrappedWarn:{value:(...e)=>{console&&console.warn&&console.warn(...e)},writable:!0},setFormat:{value:o.a,writable:!0},options:{value:function logAfOptions(e={}){const t=e.label,r=e.duration,o=e.labelFormat;if("boolean"==typeof t&&(a.label=t),"boolean"==typeof r&&(a.duration=r),o){const e=["file","path","parent","arrow","custom"],t=o.slice(0,6);if(e.includes(t))a.labelFormat=t,a.fullFormat=o;else{const e="AsyncAF Warning: logAF labelFormat option must be set to 'file' (default), 'path', 'parent', 'arrow', or 'custom'";a.wrappedWarn(e)}}},writable:!0}}),(n.options.reset=function logAfOptionsReset(){n.label=!0,n.labelFormat="file",n.duration=!0})();var a=t.default=n},function(e,t,r){"use strict";r.r(t);r.d(t,"AsyncAfWrapperProto",function(){return o});class o{constructor(e){this.data=Promise[Array.isArray(e)?"all":"resolve"](e)}then(e,t){return new this.constructor(this.data.then(e,t))}catch(e){return this.then(null,e)}}class n extends o{}const a=n;(n=function AsyncAfWrapper(e){return new a(e)}).prototype=a.prototype,Object.setPrototypeOf(n,a),n.prototype.constructor=n,o.use=function use(e){if("object"!=typeof e)throw new TypeError("use method accepts an Object containing the methods you'd like to add to the AsyncAF prototype");Object.assign(this.prototype,e)},t.default=n},function(e,t,r){"use strict";r.r(t),t.default=function reduceAF(e,t=null){return this.then(r=>{if(!r)throw TypeError(`Cannot read property 'reduceAF' of ${r}`);if(!Array.isArray(r))throw TypeError(`${r}.reduceAF is not a function`);if(!r.length&&null===t)throw TypeError("reduceAF of empty array with no initial value");return r.reduce(e,t)})}},function(e,t,r){"use strict";r.r(t),t.default=function filterAF(e,...t){return this.then(r=>r.filter(e,t[0]))}},function(e,t,r){"use strict";r.r(t),t.default=function forEachAF(e,...t){return this.then(r=>r.forEach(e,t[0]))}},function(e,t,r){"use strict";r.r(t),t.default=function mapAF(e,...t){return this.then(r=>r.map(e,t[0]))}},function(module,__webpack_exports__,__webpack_require__){"use strict";var _logAF__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(0);function _slicedToArray(e,t){return _arrayWithHoles(e)||_iterableToArrayLimit(e,t)||_nonIterableRest()}function _nonIterableRest(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}function _iterableToArrayLimit(e,t){var r=[],o=!0,n=!1,a=void 0;try{for(var i,l=e[Symbol.iterator]();!(o=(i=l.next()).done)&&(r.push(i.value),!t||r.length!==t);o=!0);}catch(e){n=!0,a=e}finally{try{o||null==l.return||l.return()}finally{if(n)throw a}}return r}function _arrayWithHoles(e){if(Array.isArray(e))return e}const setFormat=function setFormat(){const error=Error();if(!error.stack)return"";const _filter=error.stack.split`\n`.filter((e,t,r)=>/logAF(\s+|\s+\[.+\]\s+)\(/.test(r[t?t-1:t])),_filter2=_slicedToArray(_filter,1),targetLine=_filter2[0],fullPath=targetLine.slice(targetLine.indexOf`(`+1,targetLine.indexOf`)`),target=fullPath.lastIndexOf`/`,formats={file:()=>`@${fullPath.slice(target+1)}:\n`,path:()=>`@${fullPath}:\n`,parent(){const e=fullPath.slice(0,target).lastIndexOf`/`+1;return`@${fullPath.slice(e)}:\n`},arrow:()=>"========================>",custom(format){let _ref=fullPath.split`:`,_ref2=_slicedToArray(_ref,3),path=_ref2[0],line=_ref2[1],col=_ref2[2];path=path.split`/`;const file=path.pop();path=path.join`/`;const parent=`${path.split`/`.pop()}/`;path+="/";const arrow=formats.arrow();return eval(format.toString())}};if("custom"===_logAF__WEBPACK_IMPORTED_MODULE_0__.default.labelFormat){const e=_logAF__WEBPACK_IMPORTED_MODULE_0__.default.fullFormat;return formats.custom(e.slice(e.indexOf`=`+1))}return formats[_logAF__WEBPACK_IMPORTED_MODULE_0__.default.labelFormat]()};__webpack_exports__.a=setFormat},function(e,t,r){"use strict";r.r(t);var o=r(1),n=r(0),a=r(5),i=r(4),l=r(3),s=r(2);o.default;const u=[["@async-af/log","./lib/methods/other/logAF",n.default]],c="./lib/methods/arrays/",f=[["@async-af/map",`${c}mapAF`,a.default],["@async-af/forEach",`${c}forEachAF`,i.default],["@async-af/filter",`${c}filterAF`,l.default],["@async-af/reduce",`${c}reduceAF`,s.default]],_=e=>e.map(([e,t,r])=>r),p=_(u),d=_(f);class y extends o.AsyncAfWrapperProto{}const h=y;(y=function AsyncAF(e){return new h(e)}).prototype=h.prototype,Object.setPrototypeOf(y,h),y.prototype.constructor=y;const b=e=>e.reduce((e,t)=>{const r=function _slicedToArray(e,t){return function _arrayWithHoles(e){if(Array.isArray(e))return e}(e)||function _iterableToArrayLimit(e,t){var r=[],o=!0,n=!1,a=void 0;try{for(var i,l=e[Symbol.iterator]();!(o=(i=l.next()).done)&&(r.push(i.value),!t||r.length!==t);o=!0);}catch(e){n=!0,a=e}finally{try{o||null==l.return||l.return()}finally{if(n)throw a}}return r}(e,t)||function _nonIterableRest(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}(t.name.split`AF`||[t.name],1)[0];return Object.assign(e,{[t.name]:{value:t}},{[r]:{value:t}})},{});Object.defineProperties(o.AsyncAfWrapperProto,b(p)),Object.defineProperties(o.AsyncAfWrapperProto.prototype,b(d)),t.default=y}]).default});
!function webpackUniversalModuleDefinition(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define("async-af",[],t):"object"==typeof exports?exports["async-af"]=t():(e["async-af"]=e["async-af"]||{},e["async-af"]["async-af"]=t())}("undefined"!=typeof self?self:this,function(){return function(e){var t={};function __webpack_require__(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,__webpack_require__),o.l=!0,o.exports}return __webpack_require__.m=e,__webpack_require__.c=t,__webpack_require__.d=function(e,t,r){__webpack_require__.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:r})},__webpack_require__.r=function(e){Object.defineProperty(e,"__esModule",{value:!0})},__webpack_require__.n=function(e){var t=e&&e.__esModule?function getDefault(){return e.default}:function getModuleExports(){return e};return __webpack_require__.d(t,"a",t),t},__webpack_require__.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},__webpack_require__.p="",__webpack_require__(__webpack_require__.s=8)}([function(e,t,r){"use strict";r.r(t);var o=r(7);const n=function logAF(...e){logAF.label&&e.unshift(logAF.setFormat());const t=Date.now();return Promise.all(e).then(e=>{if(logAF.duration){const r=((Date.now()-t)/1e3).toFixed(3);e.push(`\nin ${r} secs`)}logAF.wrappedLog(...e)})};Object.defineProperties(n,{wrappedLog:{value:(...e)=>{console&&console.log&&console.log(...e)},writable:!0},wrappedWarn:{value:(...e)=>{console&&console.warn&&console.warn(...e)},writable:!0},setFormat:{value:o.a,writable:!0},options:{value:function logAfOptions(e={}){const t=e.label,r=e.duration,o=e.labelFormat;if("boolean"==typeof t&&(a.label=t),"boolean"==typeof r&&(a.duration=r),o){const e=["file","path","parent","arrow","custom"],t=o.slice(0,6);if(e.includes(t))a.labelFormat=t,a.fullFormat=o;else{const e="AsyncAF Warning: logAF labelFormat option must be set to 'file' (default), 'path', 'parent', 'arrow', or 'custom'";a.wrappedWarn(e)}}},writable:!0}}),(n.options.reset=function logAfOptionsReset(){n.label=!0,n.labelFormat="file",n.duration=!0})();var a=t.default=n},function(e,t,r){"use strict";r.r(t);r.d(t,"AsyncAfWrapperProto",function(){return o});class o{constructor(e){this.data=Promise[Array.isArray(e)?"all":"resolve"](e)}then(e,t){return new this.constructor(this.data.then(e,t))}catch(e){return this.then(null,e)}}class n extends o{}const a=n;(n=function AsyncAfWrapper(e){return new a(e)}).prototype=a.prototype,Object.setPrototypeOf(n,a),n.prototype.constructor=n,o.use=function use(e){if("object"!=typeof e)throw new TypeError("use method accepts an Object containing the methods you'd like to add to the AsyncAF prototype");Object.assign(this.prototype,e)},t.default=n},function(e,t,r){"use strict";r.r(t),t.default=function everyAF(e,...t){return this.then(r=>{if(!r)throw TypeError(`Cannot read property 'everyAF' of ${r}`);if(!Array.isArray(r))throw TypeError(`${r}.everyAF is not a function`);return r.every(e,t[0])})}},function(e,t,r){"use strict";r.r(t),t.default=function reduceAF(e,t=null){return this.then(r=>{if(!r)throw TypeError(`Cannot read property 'reduceAF' of ${r}`);if(!Array.isArray(r))throw TypeError(`${r}.reduceAF is not a function`);if(!r.length&&null===t)throw TypeError("reduceAF of empty array with no initial value");return r.reduce(e,t)})}},function(e,t,r){"use strict";r.r(t),t.default=function filterAF(e,...t){return this.then(r=>r.filter(e,t[0]))}},function(e,t,r){"use strict";r.r(t),t.default=function forEachAF(e,...t){return this.then(r=>r.forEach(e,t[0]))}},function(e,t,r){"use strict";r.r(t),t.default=function mapAF(e,...t){return this.then(r=>r.map(e,t[0]))}},function(module,__webpack_exports__,__webpack_require__){"use strict";var _logAF__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(0);function _slicedToArray(e,t){return _arrayWithHoles(e)||_iterableToArrayLimit(e,t)||_nonIterableRest()}function _nonIterableRest(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}function _iterableToArrayLimit(e,t){var r=[],o=!0,n=!1,a=void 0;try{for(var i,l=e[Symbol.iterator]();!(o=(i=l.next()).done)&&(r.push(i.value),!t||r.length!==t);o=!0);}catch(e){n=!0,a=e}finally{try{o||null==l.return||l.return()}finally{if(n)throw a}}return r}function _arrayWithHoles(e){if(Array.isArray(e))return e}const setFormat=function setFormat(){const error=Error();if(!error.stack)return"";const _filter=error.stack.split`\n`.filter((e,t,r)=>/logAF(\s+|\s+\[.+\]\s+)\(/.test(r[t?t-1:t])),_filter2=_slicedToArray(_filter,1),targetLine=_filter2[0],fullPath=targetLine.slice(targetLine.indexOf`(`+1,targetLine.indexOf`)`),target=fullPath.lastIndexOf`/`,formats={file:()=>`@${fullPath.slice(target+1)}:\n`,path:()=>`@${fullPath}:\n`,parent(){const e=fullPath.slice(0,target).lastIndexOf`/`+1;return`@${fullPath.slice(e)}:\n`},arrow:()=>"========================>",custom(format){let _ref=fullPath.split`:`,_ref2=_slicedToArray(_ref,3),path=_ref2[0],line=_ref2[1],col=_ref2[2];path=path.split`/`;const file=path.pop();path=path.join`/`;const parent=`${path.split`/`.pop()}/`;path+="/";const arrow=formats.arrow();return eval(format.toString())}};if("custom"===_logAF__WEBPACK_IMPORTED_MODULE_0__.default.labelFormat){const e=_logAF__WEBPACK_IMPORTED_MODULE_0__.default.fullFormat;return formats.custom(e.slice(e.indexOf`=`+1))}return formats[_logAF__WEBPACK_IMPORTED_MODULE_0__.default.labelFormat]()};__webpack_exports__.a=setFormat},function(e,t,r){"use strict";r.r(t);var o=r(1),n=r(0),a=r(6),i=r(5),l=r(4),s=r(3),u=r(2);o.default;const c=[["@async-af/log","./lib/methods/other/logAF",n.default]],f="./lib/methods/arrays/",_=[["@async-af/map",`${f}mapAF`,a.default],["@async-af/forEach",`${f}forEachAF`,i.default],["@async-af/filter",`${f}filterAF`,l.default],["@async-af/reduce",`${f}reduceAF`,s.default],["@async-af/every",`${f}everyAF`,u.default]],p=e=>e.map(([e,t,r])=>r),y=p(c),d=p(_);class h extends o.AsyncAfWrapperProto{}const A=h;(h=function AsyncAF(e){return new A(e)}).prototype=A.prototype,Object.setPrototypeOf(h,A),h.prototype.constructor=h;const b=e=>e.reduce((e,t)=>{const r=function _slicedToArray(e,t){return function _arrayWithHoles(e){if(Array.isArray(e))return e}(e)||function _iterableToArrayLimit(e,t){var r=[],o=!0,n=!1,a=void 0;try{for(var i,l=e[Symbol.iterator]();!(o=(i=l.next()).done)&&(r.push(i.value),!t||r.length!==t);o=!0);}catch(e){n=!0,a=e}finally{try{o||null==l.return||l.return()}finally{if(n)throw a}}return r}(e,t)||function _nonIterableRest(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}(t.name.split`AF`||[t.name],1)[0];return Object.assign(e,{[t.name]:{value:t}},{[r]:{value:t}})},{});Object.defineProperties(o.AsyncAfWrapperProto,b(y)),Object.defineProperties(o.AsyncAfWrapperProto.prototype,b(d)),t.default=h}]).default});
//# sourceMappingURL=min.js.map

@@ -6,3 +6,3 @@ {

"license": "MIT",
"version": "3.1.0",
"version": "3.2.0",
"homepage": "https://asyncaf.github.io/AsyncAF/index.html",

@@ -9,0 +9,0 @@ "bugs": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc