vibrance
Version:
Cli colors for deno, built on chalk
1,118 lines (1,063 loc) • 138 kB
JavaScript
function $parcel$export(e, n, v, s) {
Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
}
var $parcel$global =
typeof globalThis !== 'undefined'
? globalThis
: typeof self !== 'undefined'
? self
: typeof window !== 'undefined'
? window
: typeof global !== 'undefined'
? global
: {};
var $parcel$modules = {};
var $parcel$inits = {};
var parcelRequire = $parcel$global["parcelRequire7111"];
if (parcelRequire == null) {
parcelRequire = function(id) {
if (id in $parcel$modules) {
return $parcel$modules[id].exports;
}
if (id in $parcel$inits) {
var init = $parcel$inits[id];
delete $parcel$inits[id];
var module = {id: id, exports: {}};
$parcel$modules[id] = module;
init.call(module.exports, module, module.exports);
return module.exports;
}
var err = new Error("Cannot find module '" + id + "'");
err.code = 'MODULE_NOT_FOUND';
throw err;
};
parcelRequire.register = function register(id, init) {
$parcel$inits[id] = init;
};
$parcel$global["parcelRequire7111"] = parcelRequire;
}
parcelRequire.register("9nb1c", function(module, exports) {
// shim for using process in browser
var $6d2ecf10f390706f$var$process = module.exports = {
};
// cached from whatever global is present so that test runners that stub it
// don't break things. But we need to wrap it in a try catch in case it is
// wrapped in strict mode code which doesn't define any globals. It's inside a
// function because try/catches deoptimize in certain engines.
var $6d2ecf10f390706f$var$cachedSetTimeout;
var $6d2ecf10f390706f$var$cachedClearTimeout;
function $6d2ecf10f390706f$var$defaultSetTimout() {
throw new Error('setTimeout has not been defined');
}
function $6d2ecf10f390706f$var$defaultClearTimeout() {
throw new Error('clearTimeout has not been defined');
}
(function() {
try {
if (typeof setTimeout === 'function') $6d2ecf10f390706f$var$cachedSetTimeout = setTimeout;
else $6d2ecf10f390706f$var$cachedSetTimeout = $6d2ecf10f390706f$var$defaultSetTimout;
} catch (e) {
$6d2ecf10f390706f$var$cachedSetTimeout = $6d2ecf10f390706f$var$defaultSetTimout;
}
try {
if (typeof clearTimeout === 'function') $6d2ecf10f390706f$var$cachedClearTimeout = clearTimeout;
else $6d2ecf10f390706f$var$cachedClearTimeout = $6d2ecf10f390706f$var$defaultClearTimeout;
} catch (e1) {
$6d2ecf10f390706f$var$cachedClearTimeout = $6d2ecf10f390706f$var$defaultClearTimeout;
}
})();
function $6d2ecf10f390706f$var$runTimeout(fun) {
if ($6d2ecf10f390706f$var$cachedSetTimeout === setTimeout) //normal enviroments in sane situations
return setTimeout(fun, 0);
// if setTimeout wasn't available but was latter defined
if (($6d2ecf10f390706f$var$cachedSetTimeout === $6d2ecf10f390706f$var$defaultSetTimout || !$6d2ecf10f390706f$var$cachedSetTimeout) && setTimeout) {
$6d2ecf10f390706f$var$cachedSetTimeout = setTimeout;
return setTimeout(fun, 0);
}
try {
// when when somebody has screwed with setTimeout but no I.E. maddness
return $6d2ecf10f390706f$var$cachedSetTimeout(fun, 0);
} catch (e) {
try {
// When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
return $6d2ecf10f390706f$var$cachedSetTimeout.call(null, fun, 0);
} catch (e) {
// same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error
return $6d2ecf10f390706f$var$cachedSetTimeout.call(this, fun, 0);
}
}
}
function $6d2ecf10f390706f$var$runClearTimeout(marker) {
if ($6d2ecf10f390706f$var$cachedClearTimeout === clearTimeout) //normal enviroments in sane situations
return clearTimeout(marker);
// if clearTimeout wasn't available but was latter defined
if (($6d2ecf10f390706f$var$cachedClearTimeout === $6d2ecf10f390706f$var$defaultClearTimeout || !$6d2ecf10f390706f$var$cachedClearTimeout) && clearTimeout) {
$6d2ecf10f390706f$var$cachedClearTimeout = clearTimeout;
return clearTimeout(marker);
}
try {
// when when somebody has screwed with setTimeout but no I.E. maddness
return $6d2ecf10f390706f$var$cachedClearTimeout(marker);
} catch (e) {
try {
// When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
return $6d2ecf10f390706f$var$cachedClearTimeout.call(null, marker);
} catch (e) {
// same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.
// Some versions of I.E. have different rules for clearTimeout vs setTimeout
return $6d2ecf10f390706f$var$cachedClearTimeout.call(this, marker);
}
}
}
var $6d2ecf10f390706f$var$queue = [];
var $6d2ecf10f390706f$var$draining = false;
var $6d2ecf10f390706f$var$currentQueue;
var $6d2ecf10f390706f$var$queueIndex = -1;
function $6d2ecf10f390706f$var$cleanUpNextTick() {
if (!$6d2ecf10f390706f$var$draining || !$6d2ecf10f390706f$var$currentQueue) return;
$6d2ecf10f390706f$var$draining = false;
if ($6d2ecf10f390706f$var$currentQueue.length) $6d2ecf10f390706f$var$queue = $6d2ecf10f390706f$var$currentQueue.concat($6d2ecf10f390706f$var$queue);
else $6d2ecf10f390706f$var$queueIndex = -1;
if ($6d2ecf10f390706f$var$queue.length) $6d2ecf10f390706f$var$drainQueue();
}
function $6d2ecf10f390706f$var$drainQueue() {
if ($6d2ecf10f390706f$var$draining) return;
var timeout = $6d2ecf10f390706f$var$runTimeout($6d2ecf10f390706f$var$cleanUpNextTick);
$6d2ecf10f390706f$var$draining = true;
var len = $6d2ecf10f390706f$var$queue.length;
while(len){
$6d2ecf10f390706f$var$currentQueue = $6d2ecf10f390706f$var$queue;
$6d2ecf10f390706f$var$queue = [];
while(++$6d2ecf10f390706f$var$queueIndex < len)if ($6d2ecf10f390706f$var$currentQueue) $6d2ecf10f390706f$var$currentQueue[$6d2ecf10f390706f$var$queueIndex].run();
$6d2ecf10f390706f$var$queueIndex = -1;
len = $6d2ecf10f390706f$var$queue.length;
}
$6d2ecf10f390706f$var$currentQueue = null;
$6d2ecf10f390706f$var$draining = false;
$6d2ecf10f390706f$var$runClearTimeout(timeout);
}
$6d2ecf10f390706f$var$process.nextTick = function(fun) {
var args = new Array(arguments.length - 1);
if (arguments.length > 1) for(var i = 1; i < arguments.length; i++)args[i - 1] = arguments[i];
$6d2ecf10f390706f$var$queue.push(new $6d2ecf10f390706f$var$Item(fun, args));
if ($6d2ecf10f390706f$var$queue.length === 1 && !$6d2ecf10f390706f$var$draining) $6d2ecf10f390706f$var$runTimeout($6d2ecf10f390706f$var$drainQueue);
};
// v8 likes predictible objects
function $6d2ecf10f390706f$var$Item(fun, array) {
this.fun = fun;
this.array = array;
}
$6d2ecf10f390706f$var$Item.prototype.run = function() {
this.fun.apply(null, this.array);
};
$6d2ecf10f390706f$var$process.title = 'browser';
$6d2ecf10f390706f$var$process.browser = true;
$6d2ecf10f390706f$var$process.env = {
};
$6d2ecf10f390706f$var$process.argv = [];
$6d2ecf10f390706f$var$process.version = ''; // empty string to avoid regexp issues
$6d2ecf10f390706f$var$process.versions = {
};
function $6d2ecf10f390706f$var$noop() {
}
$6d2ecf10f390706f$var$process.on = $6d2ecf10f390706f$var$noop;
$6d2ecf10f390706f$var$process.addListener = $6d2ecf10f390706f$var$noop;
$6d2ecf10f390706f$var$process.once = $6d2ecf10f390706f$var$noop;
$6d2ecf10f390706f$var$process.off = $6d2ecf10f390706f$var$noop;
$6d2ecf10f390706f$var$process.removeListener = $6d2ecf10f390706f$var$noop;
$6d2ecf10f390706f$var$process.removeAllListeners = $6d2ecf10f390706f$var$noop;
$6d2ecf10f390706f$var$process.emit = $6d2ecf10f390706f$var$noop;
$6d2ecf10f390706f$var$process.prependListener = $6d2ecf10f390706f$var$noop;
$6d2ecf10f390706f$var$process.prependOnceListener = $6d2ecf10f390706f$var$noop;
$6d2ecf10f390706f$var$process.listeners = function(name) {
return [];
};
$6d2ecf10f390706f$var$process.binding = function(name) {
throw new Error('process.binding is not supported');
};
$6d2ecf10f390706f$var$process.cwd = function() {
return '/';
};
$6d2ecf10f390706f$var$process.chdir = function(dir) {
throw new Error('process.chdir is not supported');
};
$6d2ecf10f390706f$var$process.umask = function() {
return 0;
};
});
parcelRequire.register("9u0DI", function(module, exports) {
$parcel$export(module.exports, "isatty", () => $6e77696498d0919b$export$9b473d35051e2626, (v) => $6e77696498d0919b$export$9b473d35051e2626 = v);
$parcel$export(module.exports, "ReadStream", () => $6e77696498d0919b$export$de64a30e4ee40519, (v) => $6e77696498d0919b$export$de64a30e4ee40519 = v);
$parcel$export(module.exports, "WriteStream", () => $6e77696498d0919b$export$b6b358f069d459a3, (v) => $6e77696498d0919b$export$b6b358f069d459a3 = v);
var $6e77696498d0919b$export$9b473d35051e2626;
var $6e77696498d0919b$export$de64a30e4ee40519;
var $6e77696498d0919b$export$b6b358f069d459a3;
$6e77696498d0919b$export$9b473d35051e2626 = function() {
return false;
};
function $6e77696498d0919b$var$ReadStream() {
throw new Error('tty.ReadStream is not implemented');
}
$6e77696498d0919b$export$de64a30e4ee40519 = $6e77696498d0919b$var$ReadStream;
function $6e77696498d0919b$var$WriteStream() {
throw new Error('tty.WriteStream is not implemented');
}
$6e77696498d0919b$export$b6b358f069d459a3 = $6e77696498d0919b$var$WriteStream;
});
parcelRequire.register("cDsRi", function(module, exports) {
// Currently in sync with Node.js lib/internal/util/types.js
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
'use strict';
var $7lj5R = parcelRequire("7lj5R");
var $7qka1 = parcelRequire("7qka1");
var $98fQt = parcelRequire("98fQt");
var $fX2rl = parcelRequire("fX2rl");
function $932f834483233a95$var$uncurryThis(f) {
return f.call.bind(f);
}
var $932f834483233a95$var$BigIntSupported = typeof BigInt !== 'undefined';
var $932f834483233a95$var$SymbolSupported = typeof Symbol !== 'undefined';
var $932f834483233a95$var$ObjectToString = $932f834483233a95$var$uncurryThis(Object.prototype.toString);
var $932f834483233a95$var$numberValue = $932f834483233a95$var$uncurryThis(Number.prototype.valueOf);
var $932f834483233a95$var$stringValue = $932f834483233a95$var$uncurryThis(String.prototype.valueOf);
var $932f834483233a95$var$booleanValue = $932f834483233a95$var$uncurryThis(Boolean.prototype.valueOf);
if ($932f834483233a95$var$BigIntSupported) var $932f834483233a95$var$bigIntValue = $932f834483233a95$var$uncurryThis(BigInt.prototype.valueOf);
if ($932f834483233a95$var$SymbolSupported) var $932f834483233a95$var$symbolValue = $932f834483233a95$var$uncurryThis(Symbol.prototype.valueOf);
function $932f834483233a95$var$checkBoxedPrimitive(value, prototypeValueOf) {
if (typeof value !== 'object') return false;
try {
prototypeValueOf(value);
return true;
} catch (e) {
return false;
}
}
module.exports.isArgumentsObject = $7lj5R;
module.exports.isGeneratorFunction = $7qka1;
module.exports.isTypedArray = $fX2rl;
// Taken from here and modified for better browser support
// https://github.com/sindresorhus/p-is-promise/blob/cda35a513bda03f977ad5cde3a079d237e82d7ef/index.js
function $932f834483233a95$var$isPromise(input) {
return typeof Promise !== 'undefined' && input instanceof Promise || input !== null && typeof input === 'object' && typeof input.then === 'function' && typeof input.catch === 'function';
}
module.exports.isPromise = $932f834483233a95$var$isPromise;
function $932f834483233a95$var$isArrayBufferView(value) {
if (typeof ArrayBuffer !== 'undefined' && ArrayBuffer.isView) return ArrayBuffer.isView(value);
return $fX2rl(value) || $932f834483233a95$var$isDataView(value);
}
module.exports.isArrayBufferView = $932f834483233a95$var$isArrayBufferView;
function $932f834483233a95$var$isUint8Array(value) {
return $98fQt(value) === 'Uint8Array';
}
module.exports.isUint8Array = $932f834483233a95$var$isUint8Array;
function $932f834483233a95$var$isUint8ClampedArray(value) {
return $98fQt(value) === 'Uint8ClampedArray';
}
module.exports.isUint8ClampedArray = $932f834483233a95$var$isUint8ClampedArray;
function $932f834483233a95$var$isUint16Array(value) {
return $98fQt(value) === 'Uint16Array';
}
module.exports.isUint16Array = $932f834483233a95$var$isUint16Array;
function $932f834483233a95$var$isUint32Array(value) {
return $98fQt(value) === 'Uint32Array';
}
module.exports.isUint32Array = $932f834483233a95$var$isUint32Array;
function $932f834483233a95$var$isInt8Array(value) {
return $98fQt(value) === 'Int8Array';
}
module.exports.isInt8Array = $932f834483233a95$var$isInt8Array;
function $932f834483233a95$var$isInt16Array(value) {
return $98fQt(value) === 'Int16Array';
}
module.exports.isInt16Array = $932f834483233a95$var$isInt16Array;
function $932f834483233a95$var$isInt32Array(value) {
return $98fQt(value) === 'Int32Array';
}
module.exports.isInt32Array = $932f834483233a95$var$isInt32Array;
function $932f834483233a95$var$isFloat32Array(value) {
return $98fQt(value) === 'Float32Array';
}
module.exports.isFloat32Array = $932f834483233a95$var$isFloat32Array;
function $932f834483233a95$var$isFloat64Array(value) {
return $98fQt(value) === 'Float64Array';
}
module.exports.isFloat64Array = $932f834483233a95$var$isFloat64Array;
function $932f834483233a95$var$isBigInt64Array(value) {
return $98fQt(value) === 'BigInt64Array';
}
module.exports.isBigInt64Array = $932f834483233a95$var$isBigInt64Array;
function $932f834483233a95$var$isBigUint64Array(value) {
return $98fQt(value) === 'BigUint64Array';
}
module.exports.isBigUint64Array = $932f834483233a95$var$isBigUint64Array;
function $932f834483233a95$var$isMapToString(value) {
return $932f834483233a95$var$ObjectToString(value) === '[object Map]';
}
$932f834483233a95$var$isMapToString.working = typeof Map !== 'undefined' && $932f834483233a95$var$isMapToString(new Map());
function $932f834483233a95$var$isMap(value) {
if (typeof Map === 'undefined') return false;
return $932f834483233a95$var$isMapToString.working ? $932f834483233a95$var$isMapToString(value) : value instanceof Map;
}
module.exports.isMap = $932f834483233a95$var$isMap;
function $932f834483233a95$var$isSetToString(value) {
return $932f834483233a95$var$ObjectToString(value) === '[object Set]';
}
$932f834483233a95$var$isSetToString.working = typeof Set !== 'undefined' && $932f834483233a95$var$isSetToString(new Set());
function $932f834483233a95$var$isSet(value) {
if (typeof Set === 'undefined') return false;
return $932f834483233a95$var$isSetToString.working ? $932f834483233a95$var$isSetToString(value) : value instanceof Set;
}
module.exports.isSet = $932f834483233a95$var$isSet;
function $932f834483233a95$var$isWeakMapToString(value) {
return $932f834483233a95$var$ObjectToString(value) === '[object WeakMap]';
}
$932f834483233a95$var$isWeakMapToString.working = typeof WeakMap !== 'undefined' && $932f834483233a95$var$isWeakMapToString(new WeakMap());
function $932f834483233a95$var$isWeakMap(value) {
if (typeof WeakMap === 'undefined') return false;
return $932f834483233a95$var$isWeakMapToString.working ? $932f834483233a95$var$isWeakMapToString(value) : value instanceof WeakMap;
}
module.exports.isWeakMap = $932f834483233a95$var$isWeakMap;
function $932f834483233a95$var$isWeakSetToString(value) {
return $932f834483233a95$var$ObjectToString(value) === '[object WeakSet]';
}
$932f834483233a95$var$isWeakSetToString.working = typeof WeakSet !== 'undefined' && $932f834483233a95$var$isWeakSetToString(new WeakSet());
function $932f834483233a95$var$isWeakSet(value) {
return $932f834483233a95$var$isWeakSetToString(value);
}
module.exports.isWeakSet = $932f834483233a95$var$isWeakSet;
function $932f834483233a95$var$isArrayBufferToString(value) {
return $932f834483233a95$var$ObjectToString(value) === '[object ArrayBuffer]';
}
$932f834483233a95$var$isArrayBufferToString.working = typeof ArrayBuffer !== 'undefined' && $932f834483233a95$var$isArrayBufferToString(new ArrayBuffer());
function $932f834483233a95$var$isArrayBuffer(value) {
if (typeof ArrayBuffer === 'undefined') return false;
return $932f834483233a95$var$isArrayBufferToString.working ? $932f834483233a95$var$isArrayBufferToString(value) : value instanceof ArrayBuffer;
}
module.exports.isArrayBuffer = $932f834483233a95$var$isArrayBuffer;
function $932f834483233a95$var$isDataViewToString(value) {
return $932f834483233a95$var$ObjectToString(value) === '[object DataView]';
}
$932f834483233a95$var$isDataViewToString.working = typeof ArrayBuffer !== 'undefined' && typeof DataView !== 'undefined' && $932f834483233a95$var$isDataViewToString(new DataView(new ArrayBuffer(1), 0, 1));
function $932f834483233a95$var$isDataView(value) {
if (typeof DataView === 'undefined') return false;
return $932f834483233a95$var$isDataViewToString.working ? $932f834483233a95$var$isDataViewToString(value) : value instanceof DataView;
}
module.exports.isDataView = $932f834483233a95$var$isDataView;
// Store a copy of SharedArrayBuffer in case it's deleted elsewhere
var $932f834483233a95$var$SharedArrayBufferCopy = typeof SharedArrayBuffer !== 'undefined' ? SharedArrayBuffer : undefined;
function $932f834483233a95$var$isSharedArrayBufferToString(value) {
return $932f834483233a95$var$ObjectToString(value) === '[object SharedArrayBuffer]';
}
function $932f834483233a95$var$isSharedArrayBuffer(value) {
if (typeof $932f834483233a95$var$SharedArrayBufferCopy === 'undefined') return false;
if (typeof $932f834483233a95$var$isSharedArrayBufferToString.working === 'undefined') $932f834483233a95$var$isSharedArrayBufferToString.working = $932f834483233a95$var$isSharedArrayBufferToString(new $932f834483233a95$var$SharedArrayBufferCopy());
return $932f834483233a95$var$isSharedArrayBufferToString.working ? $932f834483233a95$var$isSharedArrayBufferToString(value) : value instanceof $932f834483233a95$var$SharedArrayBufferCopy;
}
module.exports.isSharedArrayBuffer = $932f834483233a95$var$isSharedArrayBuffer;
function $932f834483233a95$var$isAsyncFunction(value) {
return $932f834483233a95$var$ObjectToString(value) === '[object AsyncFunction]';
}
module.exports.isAsyncFunction = $932f834483233a95$var$isAsyncFunction;
function $932f834483233a95$var$isMapIterator(value) {
return $932f834483233a95$var$ObjectToString(value) === '[object Map Iterator]';
}
module.exports.isMapIterator = $932f834483233a95$var$isMapIterator;
function $932f834483233a95$var$isSetIterator(value) {
return $932f834483233a95$var$ObjectToString(value) === '[object Set Iterator]';
}
module.exports.isSetIterator = $932f834483233a95$var$isSetIterator;
function $932f834483233a95$var$isGeneratorObject(value) {
return $932f834483233a95$var$ObjectToString(value) === '[object Generator]';
}
module.exports.isGeneratorObject = $932f834483233a95$var$isGeneratorObject;
function $932f834483233a95$var$isWebAssemblyCompiledModule(value) {
return $932f834483233a95$var$ObjectToString(value) === '[object WebAssembly.Module]';
}
module.exports.isWebAssemblyCompiledModule = $932f834483233a95$var$isWebAssemblyCompiledModule;
function $932f834483233a95$var$isNumberObject(value) {
return $932f834483233a95$var$checkBoxedPrimitive(value, $932f834483233a95$var$numberValue);
}
module.exports.isNumberObject = $932f834483233a95$var$isNumberObject;
function $932f834483233a95$var$isStringObject(value) {
return $932f834483233a95$var$checkBoxedPrimitive(value, $932f834483233a95$var$stringValue);
}
module.exports.isStringObject = $932f834483233a95$var$isStringObject;
function $932f834483233a95$var$isBooleanObject(value) {
return $932f834483233a95$var$checkBoxedPrimitive(value, $932f834483233a95$var$booleanValue);
}
module.exports.isBooleanObject = $932f834483233a95$var$isBooleanObject;
function $932f834483233a95$var$isBigIntObject(value) {
return $932f834483233a95$var$BigIntSupported && $932f834483233a95$var$checkBoxedPrimitive(value, $932f834483233a95$var$bigIntValue);
}
module.exports.isBigIntObject = $932f834483233a95$var$isBigIntObject;
function $932f834483233a95$var$isSymbolObject(value) {
return $932f834483233a95$var$SymbolSupported && $932f834483233a95$var$checkBoxedPrimitive(value, $932f834483233a95$var$symbolValue);
}
module.exports.isSymbolObject = $932f834483233a95$var$isSymbolObject;
function $932f834483233a95$var$isBoxedPrimitive(value) {
return $932f834483233a95$var$isNumberObject(value) || $932f834483233a95$var$isStringObject(value) || $932f834483233a95$var$isBooleanObject(value) || $932f834483233a95$var$isBigIntObject(value) || $932f834483233a95$var$isSymbolObject(value);
}
module.exports.isBoxedPrimitive = $932f834483233a95$var$isBoxedPrimitive;
function $932f834483233a95$var$isAnyArrayBuffer(value) {
return typeof Uint8Array !== 'undefined' && ($932f834483233a95$var$isArrayBuffer(value) || $932f834483233a95$var$isSharedArrayBuffer(value));
}
module.exports.isAnyArrayBuffer = $932f834483233a95$var$isAnyArrayBuffer;
[
'isProxy',
'isExternal',
'isModuleNamespaceObject'
].forEach(function(method) {
Object.defineProperty(module.exports, method, {
enumerable: false,
value: function() {
throw new Error(method + ' is not supported in userland');
}
});
});
});
parcelRequire.register("7lj5R", function(module, exports) {
'use strict';
var $55894e20f97368d4$var$hasToStringTag = (parcelRequire("9qqVB"))();
var $1laoF = parcelRequire("1laoF");
var $55894e20f97368d4$var$$toString = $1laoF('Object.prototype.toString');
var $55894e20f97368d4$var$isStandardArguments = function isArguments(value) {
if ($55894e20f97368d4$var$hasToStringTag && value && typeof value === 'object' && Symbol.toStringTag in value) return false;
return $55894e20f97368d4$var$$toString(value) === '[object Arguments]';
};
var $55894e20f97368d4$var$isLegacyArguments = function isArguments(value) {
if ($55894e20f97368d4$var$isStandardArguments(value)) return true;
return value !== null && typeof value === 'object' && typeof value.length === 'number' && value.length >= 0 && $55894e20f97368d4$var$$toString(value) !== '[object Array]' && $55894e20f97368d4$var$$toString(value.callee) === '[object Function]';
};
var $55894e20f97368d4$var$supportsStandardArguments = function() {
return $55894e20f97368d4$var$isStandardArguments(arguments);
}();
$55894e20f97368d4$var$isStandardArguments.isLegacyArguments = $55894e20f97368d4$var$isLegacyArguments; // for tests
module.exports = $55894e20f97368d4$var$supportsStandardArguments ? $55894e20f97368d4$var$isStandardArguments : $55894e20f97368d4$var$isLegacyArguments;
});
parcelRequire.register("9qqVB", function(module, exports) {
'use strict';
var $91ncz = parcelRequire("91ncz");
module.exports = function hasToStringTagShams() {
return $91ncz() && !!Symbol.toStringTag;
};
});
parcelRequire.register("91ncz", function(module, exports) {
'use strict';
/* eslint complexity: [2, 18], max-statements: [2, 33] */ module.exports = function hasSymbols() {
if (typeof Symbol !== 'function' || typeof Object.getOwnPropertySymbols !== 'function') return false;
if (typeof Symbol.iterator === 'symbol') return true;
var obj = {
};
var sym = Symbol('test');
var symObj = Object(sym);
if (typeof sym === 'string') return false;
if (Object.prototype.toString.call(sym) !== '[object Symbol]') return false;
if (Object.prototype.toString.call(symObj) !== '[object Symbol]') return false;
// temp disabled per https://github.com/ljharb/object.assign/issues/17
// if (sym instanceof Symbol) { return false; }
// temp disabled per https://github.com/WebReflection/get-own-property-symbols/issues/4
// if (!(symObj instanceof Symbol)) { return false; }
// if (typeof Symbol.prototype.toString !== 'function') { return false; }
// if (String(sym) !== Symbol.prototype.toString.call(sym)) { return false; }
var symVal = 42;
obj[sym] = symVal;
for(sym in obj)return false;
// eslint-disable-line no-restricted-syntax, no-unreachable-loop
if (typeof Object.keys === 'function' && Object.keys(obj).length !== 0) return false;
if (typeof Object.getOwnPropertyNames === 'function' && Object.getOwnPropertyNames(obj).length !== 0) return false;
var syms = Object.getOwnPropertySymbols(obj);
if (syms.length !== 1 || syms[0] !== sym) return false;
if (!Object.prototype.propertyIsEnumerable.call(obj, sym)) return false;
if (typeof Object.getOwnPropertyDescriptor === 'function') {
var descriptor = Object.getOwnPropertyDescriptor(obj, sym);
if (descriptor.value !== symVal || descriptor.enumerable !== true) return false;
}
return true;
};
});
parcelRequire.register("1laoF", function(module, exports) {
'use strict';
var $7Phts = parcelRequire("7Phts");
var $h7y5I = parcelRequire("h7y5I");
var $0f9fd138aff1bbd1$var$$indexOf = $h7y5I($7Phts('String.prototype.indexOf'));
module.exports = function callBoundIntrinsic(name, allowMissing) {
var intrinsic = $7Phts(name, !!allowMissing);
if (typeof intrinsic === 'function' && $0f9fd138aff1bbd1$var$$indexOf(name, '.prototype.') > -1) return $h7y5I(intrinsic);
return intrinsic;
};
});
parcelRequire.register("7Phts", function(module, exports) {
'use strict';
var $5b2ad9cc039efe49$var$undefined;
var $5b2ad9cc039efe49$var$$SyntaxError = SyntaxError;
var $5b2ad9cc039efe49$var$$Function = Function;
var $5b2ad9cc039efe49$var$$TypeError = TypeError;
// eslint-disable-next-line consistent-return
var $5b2ad9cc039efe49$var$getEvalledConstructor = function(expressionSyntax) {
try {
return $5b2ad9cc039efe49$var$$Function('"use strict"; return (' + expressionSyntax + ').constructor;')();
} catch (e) {
}
};
var $5b2ad9cc039efe49$var$$gOPD = Object.getOwnPropertyDescriptor;
if ($5b2ad9cc039efe49$var$$gOPD) try {
$5b2ad9cc039efe49$var$$gOPD({
}, '');
} catch (e) {
$5b2ad9cc039efe49$var$$gOPD = null; // this is IE 8, which has a broken gOPD
}
var $5b2ad9cc039efe49$var$throwTypeError = function() {
throw new $5b2ad9cc039efe49$var$$TypeError();
};
var $5b2ad9cc039efe49$var$ThrowTypeError = $5b2ad9cc039efe49$var$$gOPD ? function() {
try {
// eslint-disable-next-line no-unused-expressions, no-caller, no-restricted-properties
arguments.callee; // IE 8 does not throw here
return $5b2ad9cc039efe49$var$throwTypeError;
} catch (calleeThrows) {
try {
// IE 8 throws on Object.getOwnPropertyDescriptor(arguments, '')
return $5b2ad9cc039efe49$var$$gOPD(arguments, 'callee').get;
} catch (gOPDthrows) {
return $5b2ad9cc039efe49$var$throwTypeError;
}
}
}() : $5b2ad9cc039efe49$var$throwTypeError;
var $5b2ad9cc039efe49$var$hasSymbols = (parcelRequire("6oO1A"))();
var $5b2ad9cc039efe49$var$getProto = Object.getPrototypeOf || function(x) {
return x.__proto__;
}; // eslint-disable-line no-proto
var $5b2ad9cc039efe49$var$needsEval = {
};
var $5b2ad9cc039efe49$var$TypedArray = typeof Uint8Array === 'undefined' ? $5b2ad9cc039efe49$var$undefined : $5b2ad9cc039efe49$var$getProto(Uint8Array);
var $5b2ad9cc039efe49$var$INTRINSICS = {
'%AggregateError%': typeof AggregateError === 'undefined' ? $5b2ad9cc039efe49$var$undefined : AggregateError,
'%Array%': Array,
'%ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? $5b2ad9cc039efe49$var$undefined : ArrayBuffer,
'%ArrayIteratorPrototype%': $5b2ad9cc039efe49$var$hasSymbols ? $5b2ad9cc039efe49$var$getProto([][Symbol.iterator]()) : $5b2ad9cc039efe49$var$undefined,
'%AsyncFromSyncIteratorPrototype%': $5b2ad9cc039efe49$var$undefined,
'%AsyncFunction%': $5b2ad9cc039efe49$var$needsEval,
'%AsyncGenerator%': $5b2ad9cc039efe49$var$needsEval,
'%AsyncGeneratorFunction%': $5b2ad9cc039efe49$var$needsEval,
'%AsyncIteratorPrototype%': $5b2ad9cc039efe49$var$needsEval,
'%Atomics%': typeof Atomics === 'undefined' ? $5b2ad9cc039efe49$var$undefined : Atomics,
'%BigInt%': typeof BigInt === 'undefined' ? $5b2ad9cc039efe49$var$undefined : BigInt,
'%Boolean%': Boolean,
'%DataView%': typeof DataView === 'undefined' ? $5b2ad9cc039efe49$var$undefined : DataView,
'%Date%': Date,
'%decodeURI%': decodeURI,
'%decodeURIComponent%': decodeURIComponent,
'%encodeURI%': encodeURI,
'%encodeURIComponent%': encodeURIComponent,
'%Error%': Error,
'%eval%': eval,
'%EvalError%': EvalError,
'%Float32Array%': typeof Float32Array === 'undefined' ? $5b2ad9cc039efe49$var$undefined : Float32Array,
'%Float64Array%': typeof Float64Array === 'undefined' ? $5b2ad9cc039efe49$var$undefined : Float64Array,
'%FinalizationRegistry%': typeof FinalizationRegistry === 'undefined' ? $5b2ad9cc039efe49$var$undefined : FinalizationRegistry,
'%Function%': $5b2ad9cc039efe49$var$$Function,
'%GeneratorFunction%': $5b2ad9cc039efe49$var$needsEval,
'%Int8Array%': typeof Int8Array === 'undefined' ? $5b2ad9cc039efe49$var$undefined : Int8Array,
'%Int16Array%': typeof Int16Array === 'undefined' ? $5b2ad9cc039efe49$var$undefined : Int16Array,
'%Int32Array%': typeof Int32Array === 'undefined' ? $5b2ad9cc039efe49$var$undefined : Int32Array,
'%isFinite%': isFinite,
'%isNaN%': isNaN,
'%IteratorPrototype%': $5b2ad9cc039efe49$var$hasSymbols ? $5b2ad9cc039efe49$var$getProto($5b2ad9cc039efe49$var$getProto([][Symbol.iterator]())) : $5b2ad9cc039efe49$var$undefined,
'%JSON%': typeof JSON === 'object' ? JSON : $5b2ad9cc039efe49$var$undefined,
'%Map%': typeof Map === 'undefined' ? $5b2ad9cc039efe49$var$undefined : Map,
'%MapIteratorPrototype%': typeof Map === 'undefined' || !$5b2ad9cc039efe49$var$hasSymbols ? $5b2ad9cc039efe49$var$undefined : $5b2ad9cc039efe49$var$getProto(new Map()[Symbol.iterator]()),
'%Math%': Math,
'%Number%': Number,
'%Object%': Object,
'%parseFloat%': parseFloat,
'%parseInt%': parseInt,
'%Promise%': typeof Promise === 'undefined' ? $5b2ad9cc039efe49$var$undefined : Promise,
'%Proxy%': typeof Proxy === 'undefined' ? $5b2ad9cc039efe49$var$undefined : Proxy,
'%RangeError%': RangeError,
'%ReferenceError%': ReferenceError,
'%Reflect%': typeof Reflect === 'undefined' ? $5b2ad9cc039efe49$var$undefined : Reflect,
'%RegExp%': RegExp,
'%Set%': typeof Set === 'undefined' ? $5b2ad9cc039efe49$var$undefined : Set,
'%SetIteratorPrototype%': typeof Set === 'undefined' || !$5b2ad9cc039efe49$var$hasSymbols ? $5b2ad9cc039efe49$var$undefined : $5b2ad9cc039efe49$var$getProto(new Set()[Symbol.iterator]()),
'%SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? $5b2ad9cc039efe49$var$undefined : SharedArrayBuffer,
'%String%': String,
'%StringIteratorPrototype%': $5b2ad9cc039efe49$var$hasSymbols ? $5b2ad9cc039efe49$var$getProto(''[Symbol.iterator]()) : $5b2ad9cc039efe49$var$undefined,
'%Symbol%': $5b2ad9cc039efe49$var$hasSymbols ? Symbol : $5b2ad9cc039efe49$var$undefined,
'%SyntaxError%': $5b2ad9cc039efe49$var$$SyntaxError,
'%ThrowTypeError%': $5b2ad9cc039efe49$var$ThrowTypeError,
'%TypedArray%': $5b2ad9cc039efe49$var$TypedArray,
'%TypeError%': $5b2ad9cc039efe49$var$$TypeError,
'%Uint8Array%': typeof Uint8Array === 'undefined' ? $5b2ad9cc039efe49$var$undefined : Uint8Array,
'%Uint8ClampedArray%': typeof Uint8ClampedArray === 'undefined' ? $5b2ad9cc039efe49$var$undefined : Uint8ClampedArray,
'%Uint16Array%': typeof Uint16Array === 'undefined' ? $5b2ad9cc039efe49$var$undefined : Uint16Array,
'%Uint32Array%': typeof Uint32Array === 'undefined' ? $5b2ad9cc039efe49$var$undefined : Uint32Array,
'%URIError%': URIError,
'%WeakMap%': typeof WeakMap === 'undefined' ? $5b2ad9cc039efe49$var$undefined : WeakMap,
'%WeakRef%': typeof WeakRef === 'undefined' ? $5b2ad9cc039efe49$var$undefined : WeakRef,
'%WeakSet%': typeof WeakSet === 'undefined' ? $5b2ad9cc039efe49$var$undefined : WeakSet
};
var $5b2ad9cc039efe49$var$doEval = function doEval(name) {
var value;
if (name === '%AsyncFunction%') value = $5b2ad9cc039efe49$var$getEvalledConstructor('async function () {}');
else if (name === '%GeneratorFunction%') value = $5b2ad9cc039efe49$var$getEvalledConstructor('function* () {}');
else if (name === '%AsyncGeneratorFunction%') value = $5b2ad9cc039efe49$var$getEvalledConstructor('async function* () {}');
else if (name === '%AsyncGenerator%') {
var fn = doEval('%AsyncGeneratorFunction%');
if (fn) value = fn.prototype;
} else if (name === '%AsyncIteratorPrototype%') {
var gen = doEval('%AsyncGenerator%');
if (gen) value = $5b2ad9cc039efe49$var$getProto(gen.prototype);
}
$5b2ad9cc039efe49$var$INTRINSICS[name] = value;
return value;
};
var $5b2ad9cc039efe49$var$LEGACY_ALIASES = {
'%ArrayBufferPrototype%': [
'ArrayBuffer',
'prototype'
],
'%ArrayPrototype%': [
'Array',
'prototype'
],
'%ArrayProto_entries%': [
'Array',
'prototype',
'entries'
],
'%ArrayProto_forEach%': [
'Array',
'prototype',
'forEach'
],
'%ArrayProto_keys%': [
'Array',
'prototype',
'keys'
],
'%ArrayProto_values%': [
'Array',
'prototype',
'values'
],
'%AsyncFunctionPrototype%': [
'AsyncFunction',
'prototype'
],
'%AsyncGenerator%': [
'AsyncGeneratorFunction',
'prototype'
],
'%AsyncGeneratorPrototype%': [
'AsyncGeneratorFunction',
'prototype',
'prototype'
],
'%BooleanPrototype%': [
'Boolean',
'prototype'
],
'%DataViewPrototype%': [
'DataView',
'prototype'
],
'%DatePrototype%': [
'Date',
'prototype'
],
'%ErrorPrototype%': [
'Error',
'prototype'
],
'%EvalErrorPrototype%': [
'EvalError',
'prototype'
],
'%Float32ArrayPrototype%': [
'Float32Array',
'prototype'
],
'%Float64ArrayPrototype%': [
'Float64Array',
'prototype'
],
'%FunctionPrototype%': [
'Function',
'prototype'
],
'%Generator%': [
'GeneratorFunction',
'prototype'
],
'%GeneratorPrototype%': [
'GeneratorFunction',
'prototype',
'prototype'
],
'%Int8ArrayPrototype%': [
'Int8Array',
'prototype'
],
'%Int16ArrayPrototype%': [
'Int16Array',
'prototype'
],
'%Int32ArrayPrototype%': [
'Int32Array',
'prototype'
],
'%JSONParse%': [
'JSON',
'parse'
],
'%JSONStringify%': [
'JSON',
'stringify'
],
'%MapPrototype%': [
'Map',
'prototype'
],
'%NumberPrototype%': [
'Number',
'prototype'
],
'%ObjectPrototype%': [
'Object',
'prototype'
],
'%ObjProto_toString%': [
'Object',
'prototype',
'toString'
],
'%ObjProto_valueOf%': [
'Object',
'prototype',
'valueOf'
],
'%PromisePrototype%': [
'Promise',
'prototype'
],
'%PromiseProto_then%': [
'Promise',
'prototype',
'then'
],
'%Promise_all%': [
'Promise',
'all'
],
'%Promise_reject%': [
'Promise',
'reject'
],
'%Promise_resolve%': [
'Promise',
'resolve'
],
'%RangeErrorPrototype%': [
'RangeError',
'prototype'
],
'%ReferenceErrorPrototype%': [
'ReferenceError',
'prototype'
],
'%RegExpPrototype%': [
'RegExp',
'prototype'
],
'%SetPrototype%': [
'Set',
'prototype'
],
'%SharedArrayBufferPrototype%': [
'SharedArrayBuffer',
'prototype'
],
'%StringPrototype%': [
'String',
'prototype'
],
'%SymbolPrototype%': [
'Symbol',
'prototype'
],
'%SyntaxErrorPrototype%': [
'SyntaxError',
'prototype'
],
'%TypedArrayPrototype%': [
'TypedArray',
'prototype'
],
'%TypeErrorPrototype%': [
'TypeError',
'prototype'
],
'%Uint8ArrayPrototype%': [
'Uint8Array',
'prototype'
],
'%Uint8ClampedArrayPrototype%': [
'Uint8ClampedArray',
'prototype'
],
'%Uint16ArrayPrototype%': [
'Uint16Array',
'prototype'
],
'%Uint32ArrayPrototype%': [
'Uint32Array',
'prototype'
],
'%URIErrorPrototype%': [
'URIError',
'prototype'
],
'%WeakMapPrototype%': [
'WeakMap',
'prototype'
],
'%WeakSetPrototype%': [
'WeakSet',
'prototype'
]
};
var $5lG15 = parcelRequire("5lG15");
var $3AxJV = parcelRequire("3AxJV");
var $5b2ad9cc039efe49$var$$concat = $5lG15.call(Function.call, Array.prototype.concat);
var $5b2ad9cc039efe49$var$$spliceApply = $5lG15.call(Function.apply, Array.prototype.splice);
var $5b2ad9cc039efe49$var$$replace = $5lG15.call(Function.call, String.prototype.replace);
var $5b2ad9cc039efe49$var$$strSlice = $5lG15.call(Function.call, String.prototype.slice);
/* adapted from https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js#L6735-L6744 */ var $5b2ad9cc039efe49$var$rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g;
var $5b2ad9cc039efe49$var$reEscapeChar = /\\(\\)?/g; /** Used to match backslashes in property paths. */
var $5b2ad9cc039efe49$var$stringToPath = function stringToPath(string) {
var first = $5b2ad9cc039efe49$var$$strSlice(string, 0, 1);
var last = $5b2ad9cc039efe49$var$$strSlice(string, -1);
if (first === '%' && last !== '%') throw new $5b2ad9cc039efe49$var$$SyntaxError('invalid intrinsic syntax, expected closing `%`');
else if (last === '%' && first !== '%') throw new $5b2ad9cc039efe49$var$$SyntaxError('invalid intrinsic syntax, expected opening `%`');
var result = [];
$5b2ad9cc039efe49$var$$replace(string, $5b2ad9cc039efe49$var$rePropName, function(match, number, quote, subString) {
result[result.length] = quote ? $5b2ad9cc039efe49$var$$replace(subString, $5b2ad9cc039efe49$var$reEscapeChar, '$1') : number || match;
});
return result;
};
/* end adaptation */ var $5b2ad9cc039efe49$var$getBaseIntrinsic = function getBaseIntrinsic(name, allowMissing) {
var intrinsicName = name;
var alias;
if ($3AxJV($5b2ad9cc039efe49$var$LEGACY_ALIASES, intrinsicName)) {
alias = $5b2ad9cc039efe49$var$LEGACY_ALIASES[intrinsicName];
intrinsicName = '%' + alias[0] + '%';
}
if ($3AxJV($5b2ad9cc039efe49$var$INTRINSICS, intrinsicName)) {
var value = $5b2ad9cc039efe49$var$INTRINSICS[intrinsicName];
if (value === $5b2ad9cc039efe49$var$needsEval) value = $5b2ad9cc039efe49$var$doEval(intrinsicName);
if (typeof value === 'undefined' && !allowMissing) throw new $5b2ad9cc039efe49$var$$TypeError('intrinsic ' + name + ' exists, but is not available. Please file an issue!');
return {
alias: alias,
name: intrinsicName,
value: value
};
}
throw new $5b2ad9cc039efe49$var$$SyntaxError('intrinsic ' + name + ' does not exist!');
};
module.exports = function GetIntrinsic(name, allowMissing) {
if (typeof name !== 'string' || name.length === 0) throw new $5b2ad9cc039efe49$var$$TypeError('intrinsic name must be a non-empty string');
if (arguments.length > 1 && typeof allowMissing !== 'boolean') throw new $5b2ad9cc039efe49$var$$TypeError('"allowMissing" argument must be a boolean');
var parts = $5b2ad9cc039efe49$var$stringToPath(name);
var intrinsicBaseName = parts.length > 0 ? parts[0] : '';
var intrinsic = $5b2ad9cc039efe49$var$getBaseIntrinsic('%' + intrinsicBaseName + '%', allowMissing);
var intrinsicRealName = intrinsic.name;
var value = intrinsic.value;
var skipFurtherCaching = false;
var alias = intrinsic.alias;
if (alias) {
intrinsicBaseName = alias[0];
$5b2ad9cc039efe49$var$$spliceApply(parts, $5b2ad9cc039efe49$var$$concat([
0,
1
], alias));
}
for(var i = 1, isOwn = true; i < parts.length; i += 1){
var part = parts[i];
var first = $5b2ad9cc039efe49$var$$strSlice(part, 0, 1);
var last = $5b2ad9cc039efe49$var$$strSlice(part, -1);
if ((first === '"' || first === "'" || first === '`' || last === '"' || last === "'" || last === '`') && first !== last) throw new $5b2ad9cc039efe49$var$$SyntaxError('property names with quotes must have matching quotes');
if (part === 'constructor' || !isOwn) skipFurtherCaching = true;
intrinsicBaseName += '.' + part;
intrinsicRealName = '%' + intrinsicBaseName + '%';
if ($3AxJV($5b2ad9cc039efe49$var$INTRINSICS, intrinsicRealName)) value = $5b2ad9cc039efe49$var$INTRINSICS[intrinsicRealName];
else if (value != null) {
if (!(part in value)) {
if (!allowMissing) throw new $5b2ad9cc039efe49$var$$TypeError('base intrinsic for ' + name + ' exists, but the property is not available.');
return void 0;
}
if ($5b2ad9cc039efe49$var$$gOPD && i + 1 >= parts.length) {
var desc = $5b2ad9cc039efe49$var$$gOPD(value, part);
isOwn = !!desc;
// By convention, when a data property is converted to an accessor
// property to emulate a data property that does not suffer from
// the override mistake, that accessor's getter is marked with
// an `originalValue` property. Here, when we detect this, we
// uphold the illusion by pretending to see that original data
// property, i.e., returning the value rather than the getter
// itself.
if (isOwn && 'get' in desc && !('originalValue' in desc.get)) value = desc.get;
else value = value[part];
} else {
isOwn = $3AxJV(value, part);
value = value[part];
}
if (isOwn && !skipFurtherCaching) $5b2ad9cc039efe49$var$INTRINSICS[intrinsicRealName] = value;
}
}
return value;
};
});
parcelRequire.register("6oO1A", function(module, exports) {
'use strict';
var $4a8bc9d44c33ab7c$var$origSymbol = typeof Symbol !== 'undefined' && Symbol;
var $91ncz = parcelRequire("91ncz");
module.exports = function hasNativeSymbols() {
if (typeof $4a8bc9d44c33ab7c$var$origSymbol !== 'function') return false;
if (typeof Symbol !== 'function') return false;
if (typeof $4a8bc9d44c33ab7c$var$origSymbol('foo') !== 'symbol') return false;
if (typeof Symbol('bar') !== 'symbol') return false;
return $91ncz();
};
});
parcelRequire.register("5lG15", function(module, exports) {
'use strict';
var $1zy0V = parcelRequire("1zy0V");
module.exports = Function.prototype.bind || $1zy0V;
});
parcelRequire.register("1zy0V", function(module, exports) {
'use strict';
/* eslint no-invalid-this: 1 */ var $125371cc6767e2a9$var$ERROR_MESSAGE = 'Function.prototype.bind called on incompatible ';
var $125371cc6767e2a9$var$slice = Array.prototype.slice;
var $125371cc6767e2a9$var$toStr = Object.prototype.toString;
var $125371cc6767e2a9$var$funcType = '[object Function]';
module.exports = function bind(that) {
var target = this;
if (typeof target !== 'function' || $125371cc6767e2a9$var$toStr.call(target) !== $125371cc6767e2a9$var$funcType) throw new TypeError($125371cc6767e2a9$var$ERROR_MESSAGE + target);
var args = $125371cc6767e2a9$var$slice.call(arguments, 1);
var bound;
var binder = function() {
if (this instanceof bound) {
var result = target.apply(this, args.concat($125371cc6767e2a9$var$slice.call(arguments)));
if (Object(result) === result) return result;
return this;
} else return target.apply(that, args.concat($125371cc6767e2a9$var$slice.call(arguments)));
};
var boundLength = Math.max(0, target.length - args.length);
var boundArgs = [];
for(var i = 0; i < boundLength; i++)boundArgs.push('$' + i);
bound = Function('binder', 'return function (' + boundArgs.join(',') + '){ return binder.apply(this,arguments); }')(binder);
if (target.prototype) {
var Empty = function Empty() {
};
Empty.prototype = target.prototype;
bound.prototype = new Empty();
Empty.prototype = null;
}
return bound;
};
});
parcelRequire.register("3AxJV", function(module, exports) {
'use strict';
var $5lG15 = parcelRequire("5lG15");
module.exports = $5lG15.call(Function.call, Object.prototype.hasOwnProperty);
});
parcelRequire.register("h7y5I", function(module, exports) {
'use strict';
var $5lG15 = parcelRequire("5lG15");
var $7Phts = parcelRequire("7Phts");
var $c76d88e3a4c44046$var$$apply = $7Phts('%Function.prototype.apply%');
var $c76d88e3a4c44046$var$$call = $7Phts('%Function.prototype.call%');
var $c76d88e3a4c44046$var$$reflectApply = $7Phts('%Reflect.apply%', true) || $5lG15.call($c76d88e3a4c44046$var$$call, $c76d88e3a4c44046$var$$apply);
var $c76d88e3a4c44046$var$$gOPD = $7Phts('%Object.getOwnPropertyDescriptor%', true);
var $c76d88e3a4c44046$var$$defineProperty = $7Phts('%Object.defineProperty%', true);
var $c76d88e3a4c44046$var$$max = $7Phts('%Math.max%');
if ($c76d88e3a4c44046$var$$defineProperty) try {
$c76d88e3a4c44046$var$$defineProperty({
}, 'a', {
value: 1
});
} catch (e) {
// IE 8 has a broken defineProperty
$c76d88e3a4c44046$var$$defineProperty = null;
}
module.exports = function callBind(originalFunction) {
var func = $c76d88e3a4c44046$var$$reflectApply($5lG15, $c76d88e3a4c44046$var$$call, arguments);
if ($c76d88e3a4c44046$var$$gOPD && $c76d88e3a4c44046$var$$defineProperty) {
var desc = $c76d88e3a4c44046$var$$gOPD(func, 'length');
if (desc.configurable) // original length, plus the receiver, minus any additional arguments (after the receiver)
$c76d88e3a4c44046$var$$defineProperty(func, 'length', {
value: 1 + $c76d88e3a4c44046$var$$max(0, originalFunction.length - (arguments.length - 1))
});
}
return func;
};
var $c76d88e3a4c44046$var$applyBind = function applyBind() {
return $c76d88e3a4c44046$var$$reflectApply($5lG15, $c76d88e3a4c44046$var$$apply, arguments);
};
if ($c76d88e3a4c44046$var$$defineProperty) $c76d88e3a4c44046$var$$defineProperty(module.exports, 'apply', {
value: $c76d88e3a4c44046$var$applyBind
});
else module.exports.apply = $c76d88e3a4c44046$var$applyBind;
});
parcelRequire.register("7qka1", function(module, exports) {
'use strict';
var $567a99972d987ced$var$toStr = Object.prototype.toString;
var $567a99972d987ced$var$fnToStr = Function.prototype.toString;
var $567a99972d987ced$var$isFnRegex = /^\s*(?:function)?\*/;
var $567a99972d987ced$var$hasToStringTag = (parcelRequire("9qqVB"))();
var $567a99972d987ced$var$getProto = Object.getPrototypeOf;
var $567a99972d987ced$var$getGeneratorFunc = function() {
if (!$567a99972d987ced$var$hasToStringTag) return false;
try {
return Function('return function*() {}')();
} catch (e) {
}
};
var $567a99972d987ced$var$GeneratorFunction;
module.exports = function isGeneratorFunction(fn) {
if (typeof fn !== 'function') return false;
if ($567a99972d987ced$var$isFnRegex.test($567a99972d987ced$var$fnToStr.call(fn))) return true;
if (!$567a99972d987ced$var$hasToStringTag) {
var str = $567a99972d987ced$var$toStr.call(fn);
return str === '[object GeneratorFunction]';
}
if (!$567a99972d987ced$var$getProto) return false;
if (typeof $567a99972d987ced$var$GeneratorFunction === 'undefined') {
var generatorFunc = $567a99972d987ced$var$getGeneratorFunc();
$567a99972d987ced$var$GeneratorFunction = generatorFunc ? $567a99972d987ced$var$getProto(generatorFunc) : false;
}
return $567a99972d987ced$var$getProto(fn) === $567a99972d987ced$var$GeneratorFunction;
};
});
parcelRequire.register("98fQt", function(module, exports) {
'use strict';
var $bOiNd = parcelRequire("bOiNd");
var $aAAwU = parcelRequire("aAAwU");
var $1laoF = parcelRequire("1laoF");
var $6a6126fc664b6c24$var$$toString = $1laoF('Object.prototype.toString');
var $6a6126fc664b6c24$var$hasToStringTag = (parcelRequire("9qqVB"))();
var $6a6126fc664b6c24$var$g = typeof globalThis === 'undefined' ? $parcel$global : globalThis;
var $6a6126fc664b6c24$var$typedArrays = $aAAwU();
var $6a6126fc664b6c24$var$$slice = $1laoF('String.prototype.slice');
var $6a6126fc664b6c24$var$toStrTags = {
};
var $1Bun7 = parcelRequire("1Bun7");
var $6a6126fc664b6c24$var$getPrototypeOf = Object.getPrototypeOf; // require('getprototypeof');
if ($6a6126fc664b6c24$var$hasToStringTag && $1Bun7 && $6a6126fc664b6c24$var$getPrototypeOf) $bOiNd($6a6126fc664b6c24$var$typedArrays, function(typedArray) {
if (typeof $6a6126fc664b6c24$var$g[typedArray] === 'function') {
var arr = new $6a6126fc664b6c24$var$g[typedArray]();
if (Symbol.toStringTag in arr) {
var proto = $6a6126fc664b6c24$var$getPrototypeOf(arr);
var descriptor = $1Bun7(proto, Symbol.toStringTag);
if (!descriptor) {
var superProto = $6a6126fc664b6c24$var$getPrototypeOf(proto);