@wordpress/babel-preset-default 7.13.0 → 7.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/polyfill.js CHANGED
@@ -97,8 +97,7 @@
97
97
  __webpack_require__(1);
98
98
  __webpack_require__(67);
99
99
  __webpack_require__(68);
100
- __webpack_require__(72);
101
- module.exports = __webpack_require__(79);
100
+ module.exports = __webpack_require__(72);
102
101
 
103
102
 
104
103
  /***/ }),
@@ -1892,206 +1891,5 @@ module.exports = function (argument) {
1892
1891
  };
1893
1892
 
1894
1893
 
1895
- /***/ }),
1896
- /* 79 */
1897
- /***/ (function(module, exports, __webpack_require__) {
1898
-
1899
- var $ = __webpack_require__(2);
1900
- var global = __webpack_require__(3);
1901
- var task = __webpack_require__(80);
1902
-
1903
- var FORCED = !global.setImmediate || !global.clearImmediate;
1904
-
1905
- // http://w3c.github.io/setImmediate/
1906
- $({ global: true, bind: true, enumerable: true, forced: FORCED }, {
1907
- // `setImmediate` method
1908
- // http://w3c.github.io/setImmediate/#si-setImmediate
1909
- setImmediate: task.set,
1910
- // `clearImmediate` method
1911
- // http://w3c.github.io/setImmediate/#si-clearImmediate
1912
- clearImmediate: task.clear
1913
- });
1914
-
1915
-
1916
- /***/ }),
1917
- /* 80 */
1918
- /***/ (function(module, exports, __webpack_require__) {
1919
-
1920
- var global = __webpack_require__(3);
1921
- var apply = __webpack_require__(81);
1922
- var bind = __webpack_require__(82);
1923
- var isCallable = __webpack_require__(18);
1924
- var hasOwn = __webpack_require__(35);
1925
- var fails = __webpack_require__(6);
1926
- var html = __webpack_require__(66);
1927
- var arraySlice = __webpack_require__(83);
1928
- var createElement = __webpack_require__(39);
1929
- var IS_IOS = __webpack_require__(84);
1930
- var IS_NODE = __webpack_require__(85);
1931
-
1932
- var set = global.setImmediate;
1933
- var clear = global.clearImmediate;
1934
- var process = global.process;
1935
- var Dispatch = global.Dispatch;
1936
- var Function = global.Function;
1937
- var MessageChannel = global.MessageChannel;
1938
- var String = global.String;
1939
- var counter = 0;
1940
- var queue = {};
1941
- var ONREADYSTATECHANGE = 'onreadystatechange';
1942
- var location, defer, channel, port;
1943
-
1944
- try {
1945
- // Deno throws a ReferenceError on `location` access without `--location` flag
1946
- location = global.location;
1947
- } catch (error) { /* empty */ }
1948
-
1949
- var run = function (id) {
1950
- if (hasOwn(queue, id)) {
1951
- var fn = queue[id];
1952
- delete queue[id];
1953
- fn();
1954
- }
1955
- };
1956
-
1957
- var runner = function (id) {
1958
- return function () {
1959
- run(id);
1960
- };
1961
- };
1962
-
1963
- var listener = function (event) {
1964
- run(event.data);
1965
- };
1966
-
1967
- var post = function (id) {
1968
- // old engines have not location.origin
1969
- global.postMessage(String(id), location.protocol + '//' + location.host);
1970
- };
1971
-
1972
- // Node.js 0.9+ & IE10+ has setImmediate, otherwise:
1973
- if (!set || !clear) {
1974
- set = function setImmediate(fn) {
1975
- var args = arraySlice(arguments, 1);
1976
- queue[++counter] = function () {
1977
- apply(isCallable(fn) ? fn : Function(fn), undefined, args);
1978
- };
1979
- defer(counter);
1980
- return counter;
1981
- };
1982
- clear = function clearImmediate(id) {
1983
- delete queue[id];
1984
- };
1985
- // Node.js 0.8-
1986
- if (IS_NODE) {
1987
- defer = function (id) {
1988
- process.nextTick(runner(id));
1989
- };
1990
- // Sphere (JS game engine) Dispatch API
1991
- } else if (Dispatch && Dispatch.now) {
1992
- defer = function (id) {
1993
- Dispatch.now(runner(id));
1994
- };
1995
- // Browsers with MessageChannel, includes WebWorkers
1996
- // except iOS - https://github.com/zloirock/core-js/issues/624
1997
- } else if (MessageChannel && !IS_IOS) {
1998
- channel = new MessageChannel();
1999
- port = channel.port2;
2000
- channel.port1.onmessage = listener;
2001
- defer = bind(port.postMessage, port);
2002
- // Browsers with postMessage, skip WebWorkers
2003
- // IE8 has postMessage, but it's sync & typeof its postMessage is 'object'
2004
- } else if (
2005
- global.addEventListener &&
2006
- isCallable(global.postMessage) &&
2007
- !global.importScripts &&
2008
- location && location.protocol !== 'file:' &&
2009
- !fails(post)
2010
- ) {
2011
- defer = post;
2012
- global.addEventListener('message', listener, false);
2013
- // IE8-
2014
- } else if (ONREADYSTATECHANGE in createElement('script')) {
2015
- defer = function (id) {
2016
- html.appendChild(createElement('script'))[ONREADYSTATECHANGE] = function () {
2017
- html.removeChild(this);
2018
- run(id);
2019
- };
2020
- };
2021
- // Rest old browsers
2022
- } else {
2023
- defer = function (id) {
2024
- setTimeout(runner(id), 0);
2025
- };
2026
- }
2027
- }
2028
-
2029
- module.exports = {
2030
- set: set,
2031
- clear: clear
2032
- };
2033
-
2034
-
2035
- /***/ }),
2036
- /* 81 */
2037
- /***/ (function(module, exports) {
2038
-
2039
- var FunctionPrototype = Function.prototype;
2040
- var apply = FunctionPrototype.apply;
2041
- var bind = FunctionPrototype.bind;
2042
- var call = FunctionPrototype.call;
2043
-
2044
- // eslint-disable-next-line es/no-reflect -- safe
2045
- module.exports = typeof Reflect == 'object' && Reflect.apply || (bind ? call.bind(apply) : function () {
2046
- return call.apply(apply, arguments);
2047
- });
2048
-
2049
-
2050
- /***/ }),
2051
- /* 82 */
2052
- /***/ (function(module, exports, __webpack_require__) {
2053
-
2054
- var uncurryThis = __webpack_require__(12);
2055
- var aCallable = __webpack_require__(27);
2056
-
2057
- var bind = uncurryThis(uncurryThis.bind);
2058
-
2059
- // optional / simple context binding
2060
- module.exports = function (fn, that) {
2061
- aCallable(fn);
2062
- return that === undefined ? fn : bind ? bind(fn, that) : function (/* ...args */) {
2063
- return fn.apply(that, arguments);
2064
- };
2065
- };
2066
-
2067
-
2068
- /***/ }),
2069
- /* 83 */
2070
- /***/ (function(module, exports, __webpack_require__) {
2071
-
2072
- var uncurryThis = __webpack_require__(12);
2073
-
2074
- module.exports = uncurryThis([].slice);
2075
-
2076
-
2077
- /***/ }),
2078
- /* 84 */
2079
- /***/ (function(module, exports, __webpack_require__) {
2080
-
2081
- var userAgent = __webpack_require__(25);
2082
-
2083
- module.exports = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent);
2084
-
2085
-
2086
- /***/ }),
2087
- /* 85 */
2088
- /***/ (function(module, exports, __webpack_require__) {
2089
-
2090
- var classof = __webpack_require__(13);
2091
- var global = __webpack_require__(3);
2092
-
2093
- module.exports = classof(global.process) == 'process';
2094
-
2095
-
2096
1894
  /***/ })
2097
1895
  /******/ ]); }();
@@ -4,4 +4,4 @@
4
4
  * License: http://rock.mit-license.org
5
5
  * © 2023 Denis Pushkarev (zloirock.ru)
6
6
  */
7
- !function(C){"use strict";var r,e,o;e={},(o=function(t){if(e[t])return e[t].exports;var n=e[t]={i:t,l:!1,exports:{}};return r[t].call(n.exports,n,n.exports,o),n.l=!0,n.exports}).m=r=[function(t,n,r){r(1),r(67),r(68),r(72),t.exports=r(79)},function(t,n,r){var e=r(2),o=r(36),i=r(57),u=r(56),r=r(62);e({target:"Array",proto:!0},{at:function(t){var n=o(this),r=i(n),t=u(t),t=0<=t?t:r+t;return t<0||r<=t?C:n[t]}}),r("at")},function(t,n,r){var a=r(3),p=r(4).f,s=r(40),l=r(43),y=r(34),v=r(50),d=r(61);t.exports=function(t,n){var r,e,o,i=t.target,u=t.global,c=t.stat,f=u?a:c?a[i]||y(i,{}):(a[i]||{}).prototype;if(f)for(r in n){if(e=n[r],o=t.noTargetGet?(o=p(f,r))&&o.value:f[r],!d(u?r:i+(c?".":"#")+r,t.forced)&&o!==C){if(typeof e==typeof o)continue;v(e,o)}(t.sham||o&&o.sham)&&s(e,"sham",!0),l(f,r,e,t)}}},function(t,n){function r(t){return t&&t.Math==Math&&t}t.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof global&&global)||function(){return this}()||Function("return this")()},function(t,n,r){var e=r(5),o=r(7),i=r(8),u=r(9),c=r(10),f=r(15),a=r(35),p=r(38),s=Object.getOwnPropertyDescriptor;n.f=e?s:function(t,n){if(t=c(t),n=f(n),p)try{return s(t,n)}catch(t){}if(a(t,n))return u(!o(i.f,t,n),t[n])}},function(t,n,r){r=r(6);t.exports=!r(function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]})},function(t,n){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,n){var r=Function.prototype.call;t.exports=r.bind?r.bind(r):function(){return r.apply(r,arguments)}},function(t,n,r){var e={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,i=o&&!e.call({1:2},1);n.f=i?function(t){t=o(this,t);return!!t&&t.enumerable}:e},function(t,n){t.exports=function(t,n){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:n}}},function(t,n,r){var e=r(11),o=r(14);t.exports=function(t){return e(o(t))}},function(t,n,r){var e=r(3),o=r(12),i=r(6),u=r(13),c=e.Object,f=o("".split);t.exports=i(function(){return!c("z").propertyIsEnumerable(0)})?function(t){return"String"==u(t)?f(t,""):c(t)}:c},function(t,n){var r=Function.prototype,e=r.bind,o=r.call,i=e&&e.bind(o);t.exports=e?function(t){return t&&i(o,t)}:function(t){return t&&function(){return o.apply(t,arguments)}}},function(t,n,r){var r=r(12),e=r({}.toString),o=r("".slice);t.exports=function(t){return o(e(t),8,-1)}},function(t,n,r){var e=r(3).TypeError;t.exports=function(t){if(t==C)throw e("Can't call method on "+t);return t}},function(t,n,r){var e=r(16),o=r(19);t.exports=function(t){t=e(t,"string");return o(t)?t:t+""}},function(t,n,r){var e=r(3),o=r(7),i=r(17),u=r(19),c=r(26),f=r(29),r=r(30),a=e.TypeError,p=r("toPrimitive");t.exports=function(t,n){if(!i(t)||u(t))return t;var r=c(t,p);if(r){if(r=o(r,t,n=n===C?"default":n),!i(r)||u(r))return r;throw a("Can't convert object to primitive value")}return f(t,n=n===C?"number":n)}},function(t,n,r){var e=r(18);t.exports=function(t){return"object"==typeof t?null!==t:e(t)}},function(t,n){t.exports=function(t){return"function"==typeof t}},function(t,n,r){var e=r(3),o=r(20),i=r(18),u=r(21),r=r(22),c=e.Object;t.exports=r?function(t){return"symbol"==typeof t}:function(t){var n=o("Symbol");return i(n)&&u(n.prototype,c(t))}},function(t,n,r){var e=r(3),o=r(18);t.exports=function(t,n){return arguments.length<2?(r=e[t],o(r)?r:C):e[t]&&e[t][n];var r}},function(t,n,r){r=r(12);t.exports=r({}.isPrototypeOf)},function(t,n,r){r=r(23);t.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},function(t,n,r){var e=r(24),r=r(6);t.exports=!!Object.getOwnPropertySymbols&&!r(function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&e&&e<41})},function(t,n,r){var e,o,i=r(3),u=r(25),r=i.process,i=i.Deno,i=r&&r.versions||i&&i.version,i=i&&i.v8;!(o=i?0<(e=i.split("."))[0]&&e[0]<4?1:+(e[0]+e[1]):o)&&u&&(!(e=u.match(/Edge\/(\d+)/))||74<=e[1])&&(e=u.match(/Chrome\/(\d+)/))&&(o=+e[1]),t.exports=o},function(t,n,r){r=r(20);t.exports=r("navigator","userAgent")||""},function(t,n,r){var e=r(27);t.exports=function(t,n){n=t[n];return null==n?C:e(n)}},function(t,n,r){var e=r(3),o=r(18),i=r(28),u=e.TypeError;t.exports=function(t){if(o(t))return t;throw u(i(t)+" is not a function")}},function(t,n,r){var e=r(3).String;t.exports=function(t){try{return e(t)}catch(t){return"Object"}}},function(t,n,r){var e=r(3),o=r(7),i=r(18),u=r(17),c=e.TypeError;t.exports=function(t,n){var r,e;if("string"===n&&i(r=t.toString)&&!u(e=o(r,t)))return e;if(i(r=t.valueOf)&&!u(e=o(r,t)))return e;if("string"!==n&&i(r=t.toString)&&!u(e=o(r,t)))return e;throw c("Can't convert object to primitive value")}},function(t,n,r){var e=r(3),o=r(31),i=r(35),u=r(37),c=r(23),f=r(22),a=o("wks"),p=e.Symbol,s=p&&p.for,l=f?p:p&&p.withoutSetter||u;t.exports=function(t){var n;return i(a,t)&&(c||"string"==typeof a[t])||(n="Symbol."+t,c&&i(p,t)?a[t]=p[t]:a[t]=(f&&s?s:l)(n)),a[t]}},function(t,n,r){var e=r(32),o=r(33);(t.exports=function(t,n){return o[t]||(o[t]=n!==C?n:{})})("versions",[]).push({version:"3.19.1",mode:e?"pure":"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"})},function(t,n){t.exports=!1},function(t,n,r){var e=r(3),o=r(34),r="__core-js_shared__",r=e[r]||o(r,{});t.exports=r},function(t,n,r){var e=r(3),o=Object.defineProperty;t.exports=function(n,r){try{o(e,n,{value:r,configurable:!0,writable:!0})}catch(t){e[n]=r}return r}},function(t,n,r){var e=r(12),o=r(36),i=e({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,n){return i(o(t),n)}},function(t,n,r){var e=r(3),o=r(14),i=e.Object;t.exports=function(t){return i(o(t))}},function(t,n,r){var r=r(12),e=0,o=Math.random(),i=r(1..toString);t.exports=function(t){return"Symbol("+(t===C?"":t)+")_"+i(++e+o,36)}},function(t,n,r){var e=r(5),o=r(6),i=r(39);t.exports=!e&&!o(function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a})},function(t,n,r){var e=r(3),r=r(17),o=e.document,i=r(o)&&r(o.createElement);t.exports=function(t){return i?o.createElement(t):{}}},function(t,n,r){var e=r(5),o=r(41),i=r(9);t.exports=e?function(t,n,r){return o.f(t,n,i(1,r))}:function(t,n,r){return t[n]=r,t}},function(t,n,r){var e=r(3),o=r(5),i=r(38),u=r(42),c=r(15),f=e.TypeError,a=Object.defineProperty;n.f=o?a:function(t,n,r){if(u(t),n=c(n),u(r),i)try{return a(t,n,r)}catch(t){}if("get"in r||"set"in r)throw f("Accessors not supported");return"value"in r&&(t[n]=r.value),t}},function(t,n,r){var e=r(3),o=r(17),i=e.String,u=e.TypeError;t.exports=function(t){if(o(t))return t;throw u(i(t)+" is not an object")}},function(t,n,r){var f=r(3),a=r(18),p=r(35),s=r(40),l=r(34),e=r(44),o=r(45),y=r(49).CONFIGURABLE,i=o.get,v=o.enforce,d=String(String).split("String");(t.exports=function(t,n,r,e){var o=!!e&&!!e.unsafe,i=!!e&&!!e.enumerable,u=!!e&&!!e.noTargetGet,c=e&&e.name!==C?e.name:n;a(r)&&("Symbol("===String(c).slice(0,7)&&(c="["+String(c).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),(!p(r,"name")||y&&r.name!==c)&&s(r,"name",c),(e=v(r)).source||(e.source=d.join("string"==typeof c?c:""))),t!==f?(o?!u&&t[n]&&(i=!0):delete t[n],i?t[n]=r:s(t,n,r)):i?t[n]=r:l(n,r)})(Function.prototype,"toString",function(){return a(this)&&i(this).source||e(this)})},function(t,n,r){var e=r(12),o=r(18),r=r(33),i=e(Function.toString);o(r.inspectSource)||(r.inspectSource=function(t){return i(t)}),t.exports=r.inspectSource},function(t,n,r){var e,o,i,u,c,f,a,p,s=r(46),l=r(3),y=r(12),v=r(17),d=r(40),b=r(35),g=r(33),m=r(47),r=r(48),h="Object already initialized",x=l.TypeError,l=l.WeakMap;a=s||g.state?(e=g.state||(g.state=new l),o=y(e.get),i=y(e.has),u=y(e.set),c=function(t,n){if(i(e,t))throw new x(h);return n.facade=t,u(e,t,n),n},f=function(t){return o(e,t)||{}},function(t){return i(e,t)}):(r[p=m("state")]=!0,c=function(t,n){if(b(t,p))throw new x(h);return n.facade=t,d(t,p,n),n},f=function(t){return b(t,p)?t[p]:{}},function(t){return b(t,p)}),t.exports={set:c,get:f,has:a,enforce:function(t){return a(t)?f(t):c(t,{})},getterFor:function(r){return function(t){var n;if(!v(t)||(n=f(t)).type!==r)throw x("Incompatible receiver, "+r+" required");return n}}}},function(t,n,r){var e=r(3),o=r(18),r=r(44),e=e.WeakMap;t.exports=o(e)&&/native code/.test(r(e))},function(t,n,r){var e=r(31),o=r(37),i=e("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},function(t,n){t.exports={}},function(t,n,r){var e=r(5),o=r(35),i=Function.prototype,u=e&&Object.getOwnPropertyDescriptor,r=o(i,"name"),o=r&&"something"===function(){}.name,i=r&&(!e||e&&u(i,"name").configurable);t.exports={EXISTS:r,PROPER:o,CONFIGURABLE:i}},function(t,n,r){var c=r(35),f=r(51),a=r(4),p=r(41);t.exports=function(t,n){for(var r=f(n),e=p.f,o=a.f,i=0;i<r.length;i++){var u=r[i];c(t,u)||e(t,u,o(n,u))}}},function(t,n,r){var e=r(20),o=r(12),i=r(52),u=r(60),c=r(42),f=o([].concat);t.exports=e("Reflect","ownKeys")||function(t){var n=i.f(c(t)),r=u.f;return r?f(n,r(t)):n}},function(t,n,r){var e=r(53),o=r(59).concat("length","prototype");n.f=Object.getOwnPropertyNames||function(t){return e(t,o)}},function(t,n,r){var e=r(12),u=r(35),c=r(10),f=r(54).indexOf,a=r(48),p=e([].push);t.exports=function(t,n){var r,e=c(t),o=0,i=[];for(r in e)!u(a,r)&&u(e,r)&&p(i,r);for(;n.length>o;)u(e,r=n[o++])&&(~f(i,r)||p(i,r));return i}},function(t,n,r){var f=r(10),a=r(55),p=r(57),r=function(c){return function(t,n,r){var e,o=f(t),i=p(o),u=a(r,i);if(c&&n!=n){for(;u<i;)if((e=o[u++])!=e)return!0}else for(;u<i;u++)if((c||u in o)&&o[u]===n)return c||u||0;return!c&&-1}};t.exports={includes:r(!0),indexOf:r(!1)}},function(t,n,r){var e=r(56),o=Math.max,i=Math.min;t.exports=function(t,n){t=e(t);return t<0?o(t+n,0):i(t,n)}},function(t,n){var r=Math.ceil,e=Math.floor;t.exports=function(t){t=+t;return t!=t||0==t?0:(0<t?e:r)(t)}},function(t,n,r){var e=r(58);t.exports=function(t){return e(t.length)}},function(t,n,r){var e=r(56),o=Math.min;t.exports=function(t){return 0<t?o(e(t),9007199254740991):0}},function(t,n){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(t,n){n.f=Object.getOwnPropertySymbols},function(t,n,r){var e=r(6),o=r(18),i=/#|\.prototype\./,r=function(t,n){t=c[u(t)];return t==a||t!=f&&(o(n)?e(n):!!n)},u=r.normalize=function(t){return String(t).replace(i,".").toLowerCase()},c=r.data={},f=r.NATIVE="N",a=r.POLYFILL="P";t.exports=r},function(t,n,r){var e=r(30),o=r(63),r=r(41),i=e("unscopables"),u=Array.prototype;u[i]==C&&r.f(u,i,{configurable:!0,value:o(null)}),t.exports=function(t){u[i][t]=!0}},function(t,n,r){function e(){}function o(t){return"<script>"+t+"</"+v+">"}function i(t){t.write(o("")),t.close();var n=t.parentWindow.Object;return t=null,n}var u,c=r(42),f=r(64),a=r(59),p=r(48),s=r(66),l=r(39),r=r(47),y="prototype",v="script",d=r("IE_PROTO"),b=function(){try{u=new ActiveXObject("htmlfile")}catch(t){}var t;b="undefined"==typeof document||document.domain&&u?i(u):((t=l("iframe")).style.display="none",s.appendChild(t),t.src=String("javascript:"),(t=t.contentWindow.document).open(),t.write(o("document.F=Object")),t.close(),t.F);for(var n=a.length;n--;)delete b[y][a[n]];return b()};p[d]=!0,t.exports=Object.create||function(t,n){var r;return null!==t?(e[y]=c(t),r=new e,e[y]=null,r[d]=t):r=b(),n===C?r:f(r,n)}},function(t,n,r){var e=r(5),c=r(41),f=r(42),a=r(10),p=r(65);t.exports=e?Object.defineProperties:function(t,n){f(t);for(var r,e=a(n),o=p(n),i=o.length,u=0;u<i;)c.f(t,r=o[u++],e[r]);return t}},function(t,n,r){var e=r(53),o=r(59);t.exports=Object.keys||function(t){return e(t,o)}},function(t,n,r){r=r(20);t.exports=r("document","documentElement")},function(t,n,r){r(2)({target:"Object",stat:!0},{hasOwn:r(35)})},function(t,n,r){var e=r(2),o=r(12),i=r(14),u=r(56),c=r(69),r=r(6),f=o("".charAt);e({target:"String",proto:!0,forced:r(function(){return"\ud842"!=="𠮷".at(0)})},{at:function(t){var n=c(i(this)),r=n.length,t=u(t),t=0<=t?t:r+t;return t<0||r<=t?C:f(n,t)}})},function(t,n,r){var e=r(3),o=r(70),i=e.String;t.exports=function(t){if("Symbol"===o(t))throw TypeError("Cannot convert a Symbol value to a string");return i(t)}},function(t,n,r){var e=r(3),o=r(71),i=r(18),u=r(13),c=r(30)("toStringTag"),f=e.Object,a="Arguments"==u(function(){return arguments}());t.exports=o?u:function(t){var n;return t===C?"Undefined":null===t?"Null":"string"==typeof(t=function(t,n){try{return t[n]}catch(t){}}(n=f(t),c))?t:a?u(n):"Object"==(t=u(n))&&i(n.callee)?"Arguments":t}},function(t,n,r){var e={};e[r(30)("toStringTag")]="z",t.exports="[object z]"===String(e)},function(t,n,r){var e=r(73),o=r(57),i=r(56),u=e.aTypedArray;(0,e.exportTypedArrayMethod)("at",function(t){var n=u(this),r=o(n),t=i(t),t=0<=t?t:r+t;return t<0||r<=t?C:n[t]})},function(t,n,r){function e(t){return!!s(t)&&(t=y(t),l(R,t)||l(M,t))}var o,i,u,c=r(74),f=r(5),a=r(3),p=r(18),s=r(17),l=r(35),y=r(70),v=r(28),d=r(40),b=r(43),g=r(41).f,m=r(21),h=r(75),x=r(77),O=r(30),S=r(37),j=a.Int8Array,w=j&&j.prototype,r=a.Uint8ClampedArray,r=r&&r.prototype,A=j&&h(j),T=w&&h(w),j=Object.prototype,P=a.TypeError,O=O("toStringTag"),_=S("TYPED_ARRAY_TAG"),E=S("TYPED_ARRAY_CONSTRUCTOR"),I=c&&!!x&&"Opera"!==y(a.opera),c=!1,R={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},M={BigInt64Array:8,BigUint64Array:8};for(o in R)(u=(i=a[o])&&i.prototype)?d(u,E,i):I=!1;for(o in M)(u=(i=a[o])&&i.prototype)&&d(u,E,i);if((!I||!p(A)||A===Function.prototype)&&(A=function(){throw P("Incorrect invocation")},I))for(o in R)a[o]&&x(a[o],A);if((!I||!T||T===j)&&(T=A.prototype,I))for(o in R)a[o]&&x(a[o].prototype,T);if(I&&h(r)!==T&&x(r,T),f&&!l(T,O))for(o in c=!0,g(T,O,{get:function(){return s(this)?this[_]:C}}),R)a[o]&&d(a[o],_,o);t.exports={NATIVE_ARRAY_BUFFER_VIEWS:I,TYPED_ARRAY_CONSTRUCTOR:E,TYPED_ARRAY_TAG:c&&_,aTypedArray:function(t){if(e(t))return t;throw P("Target is not a typed array")},aTypedArrayConstructor:function(t){if(p(t)&&(!x||m(A,t)))return t;throw P(v(t)+" is not a typed array constructor")},exportTypedArrayMethod:function(t,n,r){if(f){if(r)for(var e in R){e=a[e];if(e&&l(e.prototype,t))try{delete e.prototype[t]}catch(t){}}T[t]&&!r||b(T,t,!r&&I&&w[t]||n)}},exportTypedArrayStaticMethod:function(t,n,r){var e,o;if(f){if(x){if(r)for(e in R)if((o=a[e])&&l(o,t))try{delete o[t]}catch(t){}if(A[t]&&!r)return;try{return b(A,t,!r&&I&&A[t]||n)}catch(t){}}for(e in R)!(o=a[e])||o[t]&&!r||b(o,t,n)}},isView:function(t){if(!s(t))return!1;t=y(t);return"DataView"===t||l(R,t)||l(M,t)},isTypedArray:e,TypedArray:A,TypedArrayPrototype:T}},function(t,n){t.exports="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView},function(t,n,r){var e=r(3),o=r(35),i=r(18),u=r(36),c=r(47),r=r(76),f=c("IE_PROTO"),a=e.Object,p=a.prototype;t.exports=r?a.getPrototypeOf:function(t){var n=u(t);if(o(n,f))return n[f];t=n.constructor;return i(t)&&n instanceof t?t.prototype:n instanceof a?p:null}},function(t,n,r){r=r(6);t.exports=!r(function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype})},function(t,n,r){var o=r(12),i=r(42),u=r(78);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var r,e=!1,t={};try{(r=o(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(t,[]),e=t instanceof Array}catch(t){}return function(t,n){return i(t),u(n),e?r(t,n):t.__proto__=n,t}}():C)},function(t,n,r){var e=r(3),o=r(18),i=e.String,u=e.TypeError;t.exports=function(t){if("object"==typeof t||o(t))return t;throw u("Can't set "+i(t)+" as a prototype")}},function(t,n,r){var e=r(2),o=r(3),r=r(80);e({global:!0,bind:!0,enumerable:!0,forced:!o.setImmediate||!o.clearImmediate},{setImmediate:r.set,clearImmediate:r.clear})},function(t,n,r){var e,o,i=r(3),u=r(81),c=r(82),f=r(18),a=r(35),p=r(6),s=r(66),l=r(83),y=r(39),v=r(84),d=r(85),b=i.setImmediate,g=i.clearImmediate,m=i.process,h=i.Dispatch,x=i.Function,O=i.MessageChannel,S=i.String,j=0,w={},A="onreadystatechange";try{e=i.location}catch(t){}function T(t){var n;a(w,t)&&(n=w[t],delete w[t],n())}function P(t){return function(){T(t)}}function _(t){T(t.data)}r=function(t){i.postMessage(S(t),e.protocol+"//"+e.host)};b&&g||(b=function(t){var n=l(arguments,1);return w[++j]=function(){u(f(t)?t:x(t),C,n)},o(j),j},g=function(t){delete w[t]},d?o=function(t){m.nextTick(P(t))}:h&&h.now?o=function(t){h.now(P(t))}:O&&!v?(O=(v=new O).port2,v.port1.onmessage=_,o=c(O.postMessage,O)):i.addEventListener&&f(i.postMessage)&&!i.importScripts&&e&&"file:"!==e.protocol&&!p(r)?(o=r,i.addEventListener("message",_,!1)):o=A in y("script")?function(t){s.appendChild(y("script"))[A]=function(){s.removeChild(this),T(t)}}:function(t){setTimeout(P(t),0)}),t.exports={set:b,clear:g}},function(t,n){var r=Function.prototype,e=r.apply,o=r.bind,i=r.call;t.exports="object"==typeof Reflect&&Reflect.apply||(o?i.bind(e):function(){return i.apply(e,arguments)})},function(t,n,r){var e=r(12),o=r(27),i=e(e.bind);t.exports=function(t,n){return o(t),n===C?t:i?i(t,n):function(){return t.apply(n,arguments)}}},function(t,n,r){r=r(12);t.exports=r([].slice)},function(t,n,r){r=r(25);t.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(r)},function(t,n,r){var e=r(13),r=r(3);t.exports="process"==e(r.process)}],o.c=e,o.d=function(t,n,r){o.o(t,n)||Object.defineProperty(t,n,{enumerable:!0,get:r})},o.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},o.t=function(n,t){if(1&t&&(n=o(n)),8&t)return n;if(4&t&&"object"==typeof n&&n&&n.__esModule)return n;var r=Object.create(null);if(o.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:n}),2&t&&"string"!=typeof n)for(var e in n)o.d(r,e,function(t){return n[t]}.bind(null,e));return r},o.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return o.d(n,"a",n),n},o.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},o.p="",o(o.s=0)}();
7
+ !function(F){"use strict";var n,e,o;e={},(o=function(t){if(e[t])return e[t].exports;var r=e[t]={i:t,l:!1,exports:{}};return n[t].call(r.exports,r,r.exports,o),r.l=!0,r.exports}).m=n=[function(t,r,n){n(1),n(67),n(68),t.exports=n(72)},function(t,r,n){var e=n(2),o=n(36),i=n(57),u=n(56),n=n(62);e({target:"Array",proto:!0},{at:function(t){var r=o(this),n=i(r),t=u(t),t=0<=t?t:n+t;return t<0||n<=t?F:r[t]}}),n("at")},function(t,r,n){var a=n(3),p=n(4).f,s=n(40),y=n(43),l=n(34),v=n(50),b=n(61);t.exports=function(t,r){var n,e,o,i=t.target,u=t.global,c=t.stat,f=u?a:c?a[i]||l(i,{}):(a[i]||{}).prototype;if(f)for(n in r){if(e=r[n],o=t.noTargetGet?(o=p(f,n))&&o.value:f[n],!b(u?n:i+(c?".":"#")+n,t.forced)&&o!==F){if(typeof e==typeof o)continue;v(e,o)}(t.sham||o&&o.sham)&&s(e,"sham",!0),y(f,n,e,t)}}},function(t,r){function n(t){return t&&t.Math==Math&&t}t.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof global&&global)||function(){return this}()||Function("return this")()},function(t,r,n){var e=n(5),o=n(7),i=n(8),u=n(9),c=n(10),f=n(15),a=n(35),p=n(38),s=Object.getOwnPropertyDescriptor;r.f=e?s:function(t,r){if(t=c(t),r=f(r),p)try{return s(t,r)}catch(t){}if(a(t,r))return u(!o(i.f,t,r),t[r])}},function(t,r,n){n=n(6);t.exports=!n(function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]})},function(t,r){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,r){var n=Function.prototype.call;t.exports=n.bind?n.bind(n):function(){return n.apply(n,arguments)}},function(t,r,n){var e={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,i=o&&!e.call({1:2},1);r.f=i?function(t){t=o(this,t);return!!t&&t.enumerable}:e},function(t,r){t.exports=function(t,r){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:r}}},function(t,r,n){var e=n(11),o=n(14);t.exports=function(t){return e(o(t))}},function(t,r,n){var e=n(3),o=n(12),i=n(6),u=n(13),c=e.Object,f=o("".split);t.exports=i(function(){return!c("z").propertyIsEnumerable(0)})?function(t){return"String"==u(t)?f(t,""):c(t)}:c},function(t,r){var n=Function.prototype,e=n.bind,o=n.call,i=e&&e.bind(o);t.exports=e?function(t){return t&&i(o,t)}:function(t){return t&&function(){return o.apply(t,arguments)}}},function(t,r,n){var n=n(12),e=n({}.toString),o=n("".slice);t.exports=function(t){return o(e(t),8,-1)}},function(t,r,n){var e=n(3).TypeError;t.exports=function(t){if(t==F)throw e("Can't call method on "+t);return t}},function(t,r,n){var e=n(16),o=n(19);t.exports=function(t){t=e(t,"string");return o(t)?t:t+""}},function(t,r,n){var e=n(3),o=n(7),i=n(17),u=n(19),c=n(26),f=n(29),n=n(30),a=e.TypeError,p=n("toPrimitive");t.exports=function(t,r){if(!i(t)||u(t))return t;var n=c(t,p);if(n){if(n=o(n,t,r=r===F?"default":r),!i(n)||u(n))return n;throw a("Can't convert object to primitive value")}return f(t,r=r===F?"number":r)}},function(t,r,n){var e=n(18);t.exports=function(t){return"object"==typeof t?null!==t:e(t)}},function(t,r){t.exports=function(t){return"function"==typeof t}},function(t,r,n){var e=n(3),o=n(20),i=n(18),u=n(21),n=n(22),c=e.Object;t.exports=n?function(t){return"symbol"==typeof t}:function(t){var r=o("Symbol");return i(r)&&u(r.prototype,c(t))}},function(t,r,n){var e=n(3),o=n(18);t.exports=function(t,r){return arguments.length<2?(n=e[t],o(n)?n:F):e[t]&&e[t][r];var n}},function(t,r,n){n=n(12);t.exports=n({}.isPrototypeOf)},function(t,r,n){n=n(23);t.exports=n&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},function(t,r,n){var e=n(24),n=n(6);t.exports=!!Object.getOwnPropertySymbols&&!n(function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&e&&e<41})},function(t,r,n){var e,o,i=n(3),u=n(25),n=i.process,i=i.Deno,i=n&&n.versions||i&&i.version,i=i&&i.v8;!(o=i?0<(e=i.split("."))[0]&&e[0]<4?1:+(e[0]+e[1]):o)&&u&&(!(e=u.match(/Edge\/(\d+)/))||74<=e[1])&&(e=u.match(/Chrome\/(\d+)/))&&(o=+e[1]),t.exports=o},function(t,r,n){n=n(20);t.exports=n("navigator","userAgent")||""},function(t,r,n){var e=n(27);t.exports=function(t,r){r=t[r];return null==r?F:e(r)}},function(t,r,n){var e=n(3),o=n(18),i=n(28),u=e.TypeError;t.exports=function(t){if(o(t))return t;throw u(i(t)+" is not a function")}},function(t,r,n){var e=n(3).String;t.exports=function(t){try{return e(t)}catch(t){return"Object"}}},function(t,r,n){var e=n(3),o=n(7),i=n(18),u=n(17),c=e.TypeError;t.exports=function(t,r){var n,e;if("string"===r&&i(n=t.toString)&&!u(e=o(n,t)))return e;if(i(n=t.valueOf)&&!u(e=o(n,t)))return e;if("string"!==r&&i(n=t.toString)&&!u(e=o(n,t)))return e;throw c("Can't convert object to primitive value")}},function(t,r,n){var e=n(3),o=n(31),i=n(35),u=n(37),c=n(23),f=n(22),a=o("wks"),p=e.Symbol,s=p&&p.for,y=f?p:p&&p.withoutSetter||u;t.exports=function(t){var r;return i(a,t)&&(c||"string"==typeof a[t])||(r="Symbol."+t,c&&i(p,t)?a[t]=p[t]:a[t]=(f&&s?s:y)(r)),a[t]}},function(t,r,n){var e=n(32),o=n(33);(t.exports=function(t,r){return o[t]||(o[t]=r!==F?r:{})})("versions",[]).push({version:"3.19.1",mode:e?"pure":"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"})},function(t,r){t.exports=!1},function(t,r,n){var e=n(3),o=n(34),n="__core-js_shared__",n=e[n]||o(n,{});t.exports=n},function(t,r,n){var e=n(3),o=Object.defineProperty;t.exports=function(r,n){try{o(e,r,{value:n,configurable:!0,writable:!0})}catch(t){e[r]=n}return n}},function(t,r,n){var e=n(12),o=n(36),i=e({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,r){return i(o(t),r)}},function(t,r,n){var e=n(3),o=n(14),i=e.Object;t.exports=function(t){return i(o(t))}},function(t,r,n){var n=n(12),e=0,o=Math.random(),i=n(1..toString);t.exports=function(t){return"Symbol("+(t===F?"":t)+")_"+i(++e+o,36)}},function(t,r,n){var e=n(5),o=n(6),i=n(39);t.exports=!e&&!o(function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a})},function(t,r,n){var e=n(3),n=n(17),o=e.document,i=n(o)&&n(o.createElement);t.exports=function(t){return i?o.createElement(t):{}}},function(t,r,n){var e=n(5),o=n(41),i=n(9);t.exports=e?function(t,r,n){return o.f(t,r,i(1,n))}:function(t,r,n){return t[r]=n,t}},function(t,r,n){var e=n(3),o=n(5),i=n(38),u=n(42),c=n(15),f=e.TypeError,a=Object.defineProperty;r.f=o?a:function(t,r,n){if(u(t),r=c(r),u(n),i)try{return a(t,r,n)}catch(t){}if("get"in n||"set"in n)throw f("Accessors not supported");return"value"in n&&(t[r]=n.value),t}},function(t,r,n){var e=n(3),o=n(17),i=e.String,u=e.TypeError;t.exports=function(t){if(o(t))return t;throw u(i(t)+" is not an object")}},function(t,r,n){var f=n(3),a=n(18),p=n(35),s=n(40),y=n(34),e=n(44),o=n(45),l=n(49).CONFIGURABLE,i=o.get,v=o.enforce,b=String(String).split("String");(t.exports=function(t,r,n,e){var o=!!e&&!!e.unsafe,i=!!e&&!!e.enumerable,u=!!e&&!!e.noTargetGet,c=e&&e.name!==F?e.name:r;a(n)&&("Symbol("===String(c).slice(0,7)&&(c="["+String(c).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),(!p(n,"name")||l&&n.name!==c)&&s(n,"name",c),(e=v(n)).source||(e.source=b.join("string"==typeof c?c:""))),t!==f?(o?!u&&t[r]&&(i=!0):delete t[r],i?t[r]=n:s(t,r,n)):i?t[r]=n:y(r,n)})(Function.prototype,"toString",function(){return a(this)&&i(this).source||e(this)})},function(t,r,n){var e=n(12),o=n(18),n=n(33),i=e(Function.toString);o(n.inspectSource)||(n.inspectSource=function(t){return i(t)}),t.exports=n.inspectSource},function(t,r,n){var e,o,i,u,c,f,a,p,s=n(46),y=n(3),l=n(12),v=n(17),b=n(40),g=n(35),d=n(33),h=n(47),n=n(48),x="Object already initialized",m=y.TypeError,y=y.WeakMap;a=s||d.state?(e=d.state||(d.state=new y),o=l(e.get),i=l(e.has),u=l(e.set),c=function(t,r){if(i(e,t))throw new m(x);return r.facade=t,u(e,t,r),r},f=function(t){return o(e,t)||{}},function(t){return i(e,t)}):(n[p=h("state")]=!0,c=function(t,r){if(g(t,p))throw new m(x);return r.facade=t,b(t,p,r),r},f=function(t){return g(t,p)?t[p]:{}},function(t){return g(t,p)}),t.exports={set:c,get:f,has:a,enforce:function(t){return a(t)?f(t):c(t,{})},getterFor:function(n){return function(t){var r;if(!v(t)||(r=f(t)).type!==n)throw m("Incompatible receiver, "+n+" required");return r}}}},function(t,r,n){var e=n(3),o=n(18),n=n(44),e=e.WeakMap;t.exports=o(e)&&/native code/.test(n(e))},function(t,r,n){var e=n(31),o=n(37),i=e("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},function(t,r){t.exports={}},function(t,r,n){var e=n(5),o=n(35),i=Function.prototype,u=e&&Object.getOwnPropertyDescriptor,n=o(i,"name"),o=n&&"something"===function(){}.name,i=n&&(!e||e&&u(i,"name").configurable);t.exports={EXISTS:n,PROPER:o,CONFIGURABLE:i}},function(t,r,n){var c=n(35),f=n(51),a=n(4),p=n(41);t.exports=function(t,r){for(var n=f(r),e=p.f,o=a.f,i=0;i<n.length;i++){var u=n[i];c(t,u)||e(t,u,o(r,u))}}},function(t,r,n){var e=n(20),o=n(12),i=n(52),u=n(60),c=n(42),f=o([].concat);t.exports=e("Reflect","ownKeys")||function(t){var r=i.f(c(t)),n=u.f;return n?f(r,n(t)):r}},function(t,r,n){var e=n(53),o=n(59).concat("length","prototype");r.f=Object.getOwnPropertyNames||function(t){return e(t,o)}},function(t,r,n){var e=n(12),u=n(35),c=n(10),f=n(54).indexOf,a=n(48),p=e([].push);t.exports=function(t,r){var n,e=c(t),o=0,i=[];for(n in e)!u(a,n)&&u(e,n)&&p(i,n);for(;r.length>o;)u(e,n=r[o++])&&(~f(i,n)||p(i,n));return i}},function(t,r,n){var f=n(10),a=n(55),p=n(57),n=function(c){return function(t,r,n){var e,o=f(t),i=p(o),u=a(n,i);if(c&&r!=r){for(;u<i;)if((e=o[u++])!=e)return!0}else for(;u<i;u++)if((c||u in o)&&o[u]===r)return c||u||0;return!c&&-1}};t.exports={includes:n(!0),indexOf:n(!1)}},function(t,r,n){var e=n(56),o=Math.max,i=Math.min;t.exports=function(t,r){t=e(t);return t<0?o(t+r,0):i(t,r)}},function(t,r){var n=Math.ceil,e=Math.floor;t.exports=function(t){t=+t;return t!=t||0==t?0:(0<t?e:n)(t)}},function(t,r,n){var e=n(58);t.exports=function(t){return e(t.length)}},function(t,r,n){var e=n(56),o=Math.min;t.exports=function(t){return 0<t?o(e(t),9007199254740991):0}},function(t,r){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(t,r){r.f=Object.getOwnPropertySymbols},function(t,r,n){var e=n(6),o=n(18),i=/#|\.prototype\./,n=function(t,r){t=c[u(t)];return t==a||t!=f&&(o(r)?e(r):!!r)},u=n.normalize=function(t){return String(t).replace(i,".").toLowerCase()},c=n.data={},f=n.NATIVE="N",a=n.POLYFILL="P";t.exports=n},function(t,r,n){var e=n(30),o=n(63),n=n(41),i=e("unscopables"),u=Array.prototype;u[i]==F&&n.f(u,i,{configurable:!0,value:o(null)}),t.exports=function(t){u[i][t]=!0}},function(t,r,n){function e(){}function o(t){return"<script>"+t+"</"+v+">"}function i(t){t.write(o("")),t.close();var r=t.parentWindow.Object;return t=null,r}var u,c=n(42),f=n(64),a=n(59),p=n(48),s=n(66),y=n(39),n=n(47),l="prototype",v="script",b=n("IE_PROTO"),g=function(){try{u=new ActiveXObject("htmlfile")}catch(t){}var t;g="undefined"==typeof document||document.domain&&u?i(u):((t=y("iframe")).style.display="none",s.appendChild(t),t.src=String("javascript:"),(t=t.contentWindow.document).open(),t.write(o("document.F=Object")),t.close(),t.F);for(var r=a.length;r--;)delete g[l][a[r]];return g()};p[b]=!0,t.exports=Object.create||function(t,r){var n;return null!==t?(e[l]=c(t),n=new e,e[l]=null,n[b]=t):n=g(),r===F?n:f(n,r)}},function(t,r,n){var e=n(5),c=n(41),f=n(42),a=n(10),p=n(65);t.exports=e?Object.defineProperties:function(t,r){f(t);for(var n,e=a(r),o=p(r),i=o.length,u=0;u<i;)c.f(t,n=o[u++],e[n]);return t}},function(t,r,n){var e=n(53),o=n(59);t.exports=Object.keys||function(t){return e(t,o)}},function(t,r,n){n=n(20);t.exports=n("document","documentElement")},function(t,r,n){n(2)({target:"Object",stat:!0},{hasOwn:n(35)})},function(t,r,n){var e=n(2),o=n(12),i=n(14),u=n(56),c=n(69),n=n(6),f=o("".charAt);e({target:"String",proto:!0,forced:n(function(){return"\ud842"!=="𠮷".at(0)})},{at:function(t){var r=c(i(this)),n=r.length,t=u(t),t=0<=t?t:n+t;return t<0||n<=t?F:f(r,t)}})},function(t,r,n){var e=n(3),o=n(70),i=e.String;t.exports=function(t){if("Symbol"===o(t))throw TypeError("Cannot convert a Symbol value to a string");return i(t)}},function(t,r,n){var e=n(3),o=n(71),i=n(18),u=n(13),c=n(30)("toStringTag"),f=e.Object,a="Arguments"==u(function(){return arguments}());t.exports=o?u:function(t){var r;return t===F?"Undefined":null===t?"Null":"string"==typeof(t=function(t,r){try{return t[r]}catch(t){}}(r=f(t),c))?t:a?u(r):"Object"==(t=u(r))&&i(r.callee)?"Arguments":t}},function(t,r,n){var e={};e[n(30)("toStringTag")]="z",t.exports="[object z]"===String(e)},function(t,r,n){var e=n(73),o=n(57),i=n(56),u=e.aTypedArray;(0,e.exportTypedArrayMethod)("at",function(t){var r=u(this),n=o(r),t=i(t),t=0<=t?t:n+t;return t<0||n<=t?F:r[t]})},function(t,r,n){function e(t){return!!s(t)&&(t=l(t),y(I,t)||y(C,t))}var o,i,u,c=n(74),f=n(5),a=n(3),p=n(18),s=n(17),y=n(35),l=n(70),v=n(28),b=n(40),g=n(43),d=n(41).f,h=n(21),x=n(75),m=n(77),O=n(30),S=n(37),j=a.Int8Array,w=j&&j.prototype,n=a.Uint8ClampedArray,n=n&&n.prototype,A=j&&x(j),T=w&&x(w),j=Object.prototype,P=a.TypeError,O=O("toStringTag"),_=S("TYPED_ARRAY_TAG"),E=S("TYPED_ARRAY_CONSTRUCTOR"),R=c&&!!m&&"Opera"!==l(a.opera),c=!1,I={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},C={BigInt64Array:8,BigUint64Array:8};for(o in I)(u=(i=a[o])&&i.prototype)?b(u,E,i):R=!1;for(o in C)(u=(i=a[o])&&i.prototype)&&b(u,E,i);if((!R||!p(A)||A===Function.prototype)&&(A=function(){throw P("Incorrect invocation")},R))for(o in I)a[o]&&m(a[o],A);if((!R||!T||T===j)&&(T=A.prototype,R))for(o in I)a[o]&&m(a[o].prototype,T);if(R&&x(n)!==T&&m(n,T),f&&!y(T,O))for(o in c=!0,d(T,O,{get:function(){return s(this)?this[_]:F}}),I)a[o]&&b(a[o],_,o);t.exports={NATIVE_ARRAY_BUFFER_VIEWS:R,TYPED_ARRAY_CONSTRUCTOR:E,TYPED_ARRAY_TAG:c&&_,aTypedArray:function(t){if(e(t))return t;throw P("Target is not a typed array")},aTypedArrayConstructor:function(t){if(p(t)&&(!m||h(A,t)))return t;throw P(v(t)+" is not a typed array constructor")},exportTypedArrayMethod:function(t,r,n){if(f){if(n)for(var e in I){e=a[e];if(e&&y(e.prototype,t))try{delete e.prototype[t]}catch(t){}}T[t]&&!n||g(T,t,!n&&R&&w[t]||r)}},exportTypedArrayStaticMethod:function(t,r,n){var e,o;if(f){if(m){if(n)for(e in I)if((o=a[e])&&y(o,t))try{delete o[t]}catch(t){}if(A[t]&&!n)return;try{return g(A,t,!n&&R&&A[t]||r)}catch(t){}}for(e in I)!(o=a[e])||o[t]&&!n||g(o,t,r)}},isView:function(t){if(!s(t))return!1;t=l(t);return"DataView"===t||y(I,t)||y(C,t)},isTypedArray:e,TypedArray:A,TypedArrayPrototype:T}},function(t,r){t.exports="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView},function(t,r,n){var e=n(3),o=n(35),i=n(18),u=n(36),c=n(47),n=n(76),f=c("IE_PROTO"),a=e.Object,p=a.prototype;t.exports=n?a.getPrototypeOf:function(t){var r=u(t);if(o(r,f))return r[f];t=r.constructor;return i(t)&&r instanceof t?t.prototype:r instanceof a?p:null}},function(t,r,n){n=n(6);t.exports=!n(function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype})},function(t,r,n){var o=n(12),i=n(42),u=n(78);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var n,e=!1,t={};try{(n=o(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(t,[]),e=t instanceof Array}catch(t){}return function(t,r){return i(t),u(r),e?n(t,r):t.__proto__=r,t}}():F)},function(t,r,n){var e=n(3),o=n(18),i=e.String,u=e.TypeError;t.exports=function(t){if("object"==typeof t||o(t))return t;throw u("Can't set "+i(t)+" as a prototype")}}],o.c=e,o.d=function(t,r,n){o.o(t,r)||Object.defineProperty(t,r,{enumerable:!0,get:n})},o.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},o.t=function(r,t){if(1&t&&(r=o(r)),8&t)return r;if(4&t&&"object"==typeof r&&r&&r.__esModule)return r;var n=Object.create(null);if(o.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:r}),2&t&&"string"!=typeof r)for(var e in r)o.d(n,e,function(t){return r[t]}.bind(null,e));return n},o.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return o.d(r,"a",r),r},o.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},o.p="",o(o.s=0)}();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/babel-preset-default",
3
- "version": "7.13.0",
3
+ "version": "7.14.0",
4
4
  "description": "Default Babel preset for WordPress development.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -35,10 +35,10 @@
35
35
  "@babel/preset-env": "^7.16.0",
36
36
  "@babel/preset-typescript": "^7.16.0",
37
37
  "@babel/runtime": "^7.16.0",
38
- "@wordpress/babel-plugin-import-jsx-pragma": "^4.12.0",
39
- "@wordpress/browserslist-config": "^5.12.0",
40
- "@wordpress/element": "^5.6.0",
41
- "@wordpress/warning": "^2.29.0",
38
+ "@wordpress/babel-plugin-import-jsx-pragma": "^4.13.0",
39
+ "@wordpress/browserslist-config": "^5.13.0",
40
+ "@wordpress/element": "^5.7.0",
41
+ "@wordpress/warning": "^2.30.0",
42
42
  "browserslist": "^4.17.6",
43
43
  "core-js": "^3.19.1"
44
44
  },
@@ -48,5 +48,5 @@
48
48
  "scripts": {
49
49
  "build": "node ./bin/index.js"
50
50
  },
51
- "gitHead": "9534a7b3bbf07c1d40b94fdb7a3d091f297bfb06"
51
+ "gitHead": "d5c28a67b11e91e3e4b8e90346bfcb90909364d6"
52
52
  }