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.0.0-prerelease.1 to 3.0.0-prerelease.2

171

index.js
/*!
* AsyncAF (async/await fun)
*
* async-af v3.0.0-prerelease.1
* async-af v3.0.0-prerelease.2
*

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

/* harmony import */ var _packageList__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("./packageList.js");
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _nonIterableRest(); }
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance"); }
function _iterableToArrayLimit(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
class AsyncAF extends _AsyncAfWrapper__WEBPACK_IMPORTED_MODULE_0__["AsyncAfWrapperProto"] {}

@@ -134,8 +142,19 @@

const prepForDefine = methods => methods.reduce((methods, method) => Object.assign(methods, {
[method.name]: {
value: method
}
}), {});
const prepForDefine = methods => methods.reduce((methods, method) => {
// add all '*AF' methods and add 'AF-less' aliases (e.g., mapAF -> map)
const _ref = method.name.split`AF` || [method.name],
_ref2 = _slicedToArray(_ref, 1),
alias = _ref2[0];
return Object.assign(methods, {
[method.name]: {
value: method
}
}, {
[alias]: {
value: method
}
});
}, {});
Object.defineProperties(_AsyncAfWrapper__WEBPACK_IMPORTED_MODULE_0__["AsyncAfWrapperProto"], prepForDefine(_packageList__WEBPACK_IMPORTED_MODULE_1__["staticMethods"]));

@@ -177,23 +196,29 @@ Object.defineProperties(_AsyncAfWrapper__WEBPACK_IMPORTED_MODULE_0__["AsyncAfWrapperProto"].prototype, prepForDefine(_packageList__WEBPACK_IMPORTED_MODULE_1__["prototypeMethods"]));

*
* AsyncAfWrapper is one option for cherry-picking only the methods you'd like to use in your code; `use` is the only method initially available on the AsyncAfWrapper prototype; see example below
* AsyncAfWrapper is one option for cherry-picking only the methods you'd like to use in your code; {@link AsyncAfWrapper#use use} is the only method initially available on the AsyncAfWrapper prototype; see example below
*
* **Note:** while AsyncAfWrapper is a class, it can create instances with or without the `new` keyword
* @param {any} data the data to be wrapped by the AsyncAF class; can be promises or non-promises
* @returns {Object} returns an instance of AsyncAF wrapping the passed in data
* @example
*
* // say you only want to use 'mapAF', 'filterAF', and 'forEachAF' instead of pulling in the entire AsyncAF library
* **Example:**
*
* // first, install the separage packages (e.g., for npm):
* // '$ npm install --save async-af.wrapper async-af.mapAF async-af.filterAF async-af.forEachAF'
* say you only want to use {@link AsyncAF#mapAF mapAF}, {@link AsyncAF#filterAF filterAF}, {@link AsyncAF#forEachAF forEachAF}, and {@link AsyncAF#logAF logAF} instead of pulling in the entire AsyncAF library
*
* // note: don't forget to append '.legacy' to each of the packages if you're running in a pre-ES6 environment
* first, install the separate packages (e.g., for npm):
*
* // import the packages
* import AsyncAF from 'async-af.wrapper';
* import mapAF from 'async-af.mapAF';
* import filterAF from 'async-af.filterAF';
* import forEachAF from 'async-af.forEachAF';
* `$ npm install --save @async-af/{wrapper,map,filter,foreach,log}`
*
* // then, call 'use' to add each of the methods to the empty AsyncAF class's prototype
* or, if on Windows:
*
* `$ npm install --save @async-af/wrapper @async-af/map @async-af/filter @async-af/foreach @async-af/log`
*
* then import the packages
* ```js
* import AsyncAF from '@async-af/wrapper'; // aliasing 'AsyncAfWrapper' as 'AsyncAF'
* import mapAF from '@async-af/map';
* import filterAF from '@async-af/filter';
* import forEachAF from '@async-af/foreach';
* import logAF from '@async-af/log';
* ```
*
* and call {@link AsyncAfWrapper#use use}, including all prototype methods you'd like to add to AsyncAfWrapper's prototype
* ```js
* AsyncAF.use({

@@ -204,12 +229,28 @@ * mapAF,

* });
* ```
*
* // ready to go!
* {@link AsyncAF#logAF logAF} is a static method, so you should not use {@link AsyncAfWrapper#use use}; simply use regular property assignment to add it
* ```js
* AsyncAF.logAF = logAF;
* ```
*
* ready to go!
* ```js
* const promises = [1, 2, 3].map(n => Promise.resolve(n));
*
*
* AsyncAF(promises).mapAF(n => n * 2).filterAF(n => n !== 4).forEachAF(n => console.log(n));
* // logs 2 then 6
*
* AsyncAF.logAF(promises);
* // @filename.js:24:9:
* // [ 1, 2, 3 ]
* // in 0.003 secs
* ```
*
* **protip:** you can use the same technique to add your own custom prototype or static methods to AsyncAfWrapper or even to the main AsyncAF class; see {@link AsyncAfWrapper#use use} for an example
* @param {any} data the data to be wrapped by the AsyncAF class; can be promises or non-promises
* @returns {Object} returns an instance of AsyncAfWrapper wrapping the passed in data
* @since 3.0.0
* @see AsyncAF
* @see use
* @see {@link AsyncAfWrapper#use use}
* @class AsyncAfWrapper

@@ -493,5 +534,6 @@ */

* @see {@link AsyncAF#logAF_options logAF.options} to turn the label off or change its format
* @see {@link AsyncAF#logAF_reset logAF.reset} to reset options to default
* @see logAF.options.reset to reset options to default
* @since 3.0.0
* @memberof AsyncAF
* @alias AsyncAF#logAF
*/

@@ -551,3 +593,3 @@

/**
* Sets logging options for the logAF method
* Sets logging options for {@link AsyncAF#logAF logAF}
*

@@ -663,2 +705,13 @@ * accepts an options object with the following optional properties:

* ```
*
* to reset `logAF.options` to its default values, call `logAF.options.reset`
* ```js
* logAF.options.reset();
*
* // options are now:
* // label: true,
* // duration: true,
* // labelFormat: 'file'
* ```
*
* @static

@@ -670,2 +723,4 @@ * @param {Object} options the options for logAF

* @returns {undefined} sets the options for logAF
* @see {@link AsyncAF#logAF logAF}
* @see logAF.options.reset to reset options to default
* @memberof AsyncAF

@@ -793,2 +848,68 @@ * @alias AsyncAF#logAF_options

__webpack_require__.r(__webpack_exports__);
/**
* adds prototype methods to AsyncAF or AsyncAfWrapper
*
* see {@link AsyncAfWrapper AsyncAfWrapper} for an example of how to cherry-pick AsyncAF methods you'd like to use rather than pulling in the entire AsyncAF library;
*
* for something different, the following shows how to add custom prototype methods to AsyncAF & AsyncAfWrapper
*
* **Example:**
*
* say you want to extend AsyncAF with your own method that acts on an array of non-promises or promises that resolve to numbers and naively adds them up
*
* let's call it sumAF; here's some code:
*
* ```js
* // sumAF.js
*
* const sumAF = function () {
* return this.then(numbers => numbers.reduce((sum, num) => sum + num));
* };
*
* export default sumAF;
* ```
*
* pull in {@link AsyncAF AsyncAF} or {@link AsyncAfWrapper AsyncAfWrapper} and sumAF to the file you'd like to use it in:
*
* ```js
* // otherFile.js
*
* import AsyncAF from 'async-af';
* import sumAF from './sumAF';
* ```
*
* then, call `use` on {@link AsyncAF AsyncAF} and pass in sumAF wrapped in an object:
*
* ```js
* // otherFile.js
* // ...
*
* AsyncAF.use({sumAF});
* ```
*
* ready! now your custom prototype method will be available on {@link AsyncAF AsyncAF}
*
* ```js
* // otherFile.js
* // ...
*
* const promises = [1, 2, 3].map(n => Promise.resolve(n));
*
* const sum = AsyncAF(promises).sumAF()
*
* AsyncAF.logAF(sum);
* // @otherFile.js:10:9:
* // 6
* // in 0.001 secs
* ```
*
* @static
* @param {Object} methods an Object containing the prototype methods you'd like to use
* @returns {undefined} adds prototype methods to AsyncAF or AsyncAfWrapper
* @since 3.0.0
* @see AsyncAF
* @see AsyncAfWrapper
* @memberof AsyncAfWrapper
* @alias AsyncAfWrapper#use
*/
const use = function use(methods) {

@@ -795,0 +916,0 @@ if (typeof methods !== 'object') {

4

legacy/min.js
/*!
* AsyncAF (async/await fun)
*
* async-af v3.0.0-prerelease.1
* async-af v3.0.0-prerelease.2
*

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

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

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

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

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

"license": "MIT",
"version": "3.0.0-prerelease.1",
"version": "3.0.0-prerelease.2",
"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