This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-js/bundle/doric-sandbox.es5.js

15371 lines
565 KiB
JavaScript
Raw Normal View History

2020-01-17 14:55:39 +08:00
var doric = (function (exports) {
'use strict';
/*
* Copyright [2019] [Doric.Pub]
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
var __uniqueId__ = 0;
function uniqueId(prefix) {
return "__" + prefix + "_" + __uniqueId__++ + "__";
}
2021-03-02 10:28:33 +08:00
function toString$2(message) {
2020-01-17 14:55:39 +08:00
if (message instanceof Function) {
return message.toString();
}
else if (message instanceof Object) {
try {
return JSON.stringify(message);
}
catch (e) {
return message.toString();
}
}
else if (message === undefined) {
return "undefined";
}
else {
return message.toString();
}
}
2021-11-29 10:29:26 +08:00
function log$9() {
var arguments$1 = arguments;
var args = [];
for (var _i = 0; _i < arguments.length; _i++) {
args[_i] = arguments$1[_i];
}
var out = "";
for (var i = 0; i < arguments.length; i++) {
if (i > 0) {
out += ',';
}
out += toString$2(arguments$1[i]);
}
nativeLog('d', out);
}
2020-01-17 14:55:39 +08:00
function loge() {
var arguments$1 = arguments;
var message = [];
for (var _i = 0; _i < arguments.length; _i++) {
message[_i] = arguments$1[_i];
}
var out = "";
for (var i = 0; i < arguments.length; i++) {
if (i > 0) {
out += ',';
}
2021-03-02 10:28:33 +08:00
out += toString$2(arguments$1[i]);
2020-01-17 14:55:39 +08:00
}
nativeLog('e', out);
}
2021-11-29 10:29:26 +08:00
function logw() {
var arguments$1 = arguments;
var message = [];
for (var _i = 0; _i < arguments.length; _i++) {
message[_i] = arguments$1[_i];
}
var out = "";
for (var i = 0; i < arguments.length; i++) {
if (i > 0) {
out += ',';
}
out += toString$2(arguments$1[i]);
}
nativeLog('w', out);
}
2020-01-17 14:55:39 +08:00
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
2020-08-03 12:01:49 +08:00
function createCommonjsModule(fn, basedir, module) {
return module = {
path: basedir,
exports: {},
require: function (path, base) {
return commonjsRequire(path, (base === undefined || base === null) ? module.path : base);
}
}, fn(module, module.exports), module.exports;
}
function commonjsRequire () {
throw new Error('Dynamic requires are not currently supported by @rollup/plugin-commonjs');
2020-01-17 14:55:39 +08:00
}
/*! *****************************************************************************
Copyright (C) Microsoft. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at http://www.apache.org/licenses/LICENSE-2.0
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
MERCHANTABLITY OR NON-INFRINGEMENT.
See the Apache Version 2.0 License for specific language governing permissions
and limitations under the License.
***************************************************************************** */
var Reflect$1;
(function (Reflect) {
// Metadata Proposal
// https://rbuckton.github.io/reflect-metadata/
(function (factory) {
var root = typeof commonjsGlobal === "object" ? commonjsGlobal :
typeof self === "object" ? self :
typeof this === "object" ? this :
Function("return this;")();
var exporter = makeExporter(Reflect);
if (typeof root.Reflect === "undefined") {
root.Reflect = Reflect;
}
else {
exporter = makeExporter(root.Reflect, exporter);
}
factory(exporter);
function makeExporter(target, previous) {
return function (key, value) {
if (typeof target[key] !== "function") {
Object.defineProperty(target, key, { configurable: true, writable: true, value: value });
}
if (previous)
{ previous(key, value); }
};
}
})(function (exporter) {
var hasOwn = Object.prototype.hasOwnProperty;
// feature test for Symbol support
var supportsSymbol = typeof Symbol === "function";
var toPrimitiveSymbol = supportsSymbol && typeof Symbol.toPrimitive !== "undefined" ? Symbol.toPrimitive : "@@toPrimitive";
var iteratorSymbol = supportsSymbol && typeof Symbol.iterator !== "undefined" ? Symbol.iterator : "@@iterator";
var supportsCreate = typeof Object.create === "function"; // feature test for Object.create support
var supportsProto = { __proto__: [] } instanceof Array; // feature test for __proto__ support
var downLevel = !supportsCreate && !supportsProto;
var HashMap = {
// create an object in dictionary mode (a.k.a. "slow" mode in v8)
create: supportsCreate
? function () { return MakeDictionary(Object.create(null)); }
: supportsProto
? function () { return MakeDictionary({ __proto__: null }); }
: function () { return MakeDictionary({}); },
has: downLevel
? function (map, key) { return hasOwn.call(map, key); }
: function (map, key) { return key in map; },
get: downLevel
? function (map, key) { return hasOwn.call(map, key) ? map[key] : undefined; }
: function (map, key) { return map[key]; },
};
// Load global or shim versions of Map, Set, and WeakMap
var functionPrototype = Object.getPrototypeOf(Function);
var usePolyfill = typeof process === "object" && process.env && process.env["REFLECT_METADATA_USE_MAP_POLYFILL"] === "true";
var _Map = !usePolyfill && typeof Map === "function" && typeof Map.prototype.entries === "function" ? Map : CreateMapPolyfill();
var _Set = !usePolyfill && typeof Set === "function" && typeof Set.prototype.entries === "function" ? Set : CreateSetPolyfill();
var _WeakMap = !usePolyfill && typeof WeakMap === "function" ? WeakMap : CreateWeakMapPolyfill();
// [[Metadata]] internal slot
// https://rbuckton.github.io/reflect-metadata/#ordinary-object-internal-methods-and-internal-slots
var Metadata = new _WeakMap();
/**
* Applies a set of decorators to a property of a target object.
* @param decorators An array of decorators.
* @param target The target object.
* @param propertyKey (Optional) The property key to decorate.
* @param attributes (Optional) The property descriptor for the target key.
* @remarks Decorators are applied in reverse order.
* @example
*
* class Example {
* // property declarations are not part of ES6, though they are valid in TypeScript:
* // static staticProperty;
* // property;
*
* constructor(p) { }
* static staticMethod(p) { }
* method(p) { }
* }
*
* // constructor
* Example = Reflect.decorate(decoratorsArray, Example);
*
* // property (on constructor)
* Reflect.decorate(decoratorsArray, Example, "staticProperty");
*
* // property (on prototype)
* Reflect.decorate(decoratorsArray, Example.prototype, "property");
*
* // method (on constructor)
* Object.defineProperty(Example, "staticMethod",
* Reflect.decorate(decoratorsArray, Example, "staticMethod",
* Object.getOwnPropertyDescriptor(Example, "staticMethod")));
*
* // method (on prototype)
* Object.defineProperty(Example.prototype, "method",
* Reflect.decorate(decoratorsArray, Example.prototype, "method",
* Object.getOwnPropertyDescriptor(Example.prototype, "method")));
*
*/
function decorate(decorators, target, propertyKey, attributes) {
if (!IsUndefined(propertyKey)) {
if (!IsArray(decorators))
{ throw new TypeError(); }
if (!IsObject(target))
{ throw new TypeError(); }
if (!IsObject(attributes) && !IsUndefined(attributes) && !IsNull(attributes))
{ throw new TypeError(); }
if (IsNull(attributes))
{ attributes = undefined; }
propertyKey = ToPropertyKey(propertyKey);
return DecorateProperty(decorators, target, propertyKey, attributes);
}
else {
if (!IsArray(decorators))
{ throw new TypeError(); }
if (!IsConstructor(target))
{ throw new TypeError(); }
return DecorateConstructor(decorators, target);
}
}
exporter("decorate", decorate);
// 4.1.2 Reflect.metadata(metadataKey, metadataValue)
// https://rbuckton.github.io/reflect-metadata/#reflect.metadata
/**
* A default metadata decorator factory that can be used on a class, class member, or parameter.
* @param metadataKey The key for the metadata entry.
* @param metadataValue The value for the metadata entry.
* @returns A decorator function.
* @remarks
* If `metadataKey` is already defined for the target and target key, the
* metadataValue for that key will be overwritten.
* @example
*
* // constructor
* @Reflect.metadata(key, value)
* class Example {
* }
*
* // property (on constructor, TypeScript only)
* class Example {
* @Reflect.metadata(key, value)
* static staticProperty;
* }
*
* // property (on prototype, TypeScript only)
* class Example {
* @Reflect.metadata(key, value)
* property;
* }
*
* // method (on constructor)
* class Example {
* @Reflect.metadata(key, value)
* static staticMethod() { }
* }
*
* // method (on prototype)
* class Example {
* @Reflect.metadata(key, value)
* method() { }
* }
*
*/
function metadata(metadataKey, metadataValue) {
function decorator(target, propertyKey) {
if (!IsObject(target))
{ throw new TypeError(); }
if (!IsUndefined(propertyKey) && !IsPropertyKey(propertyKey))
{ throw new TypeError(); }
OrdinaryDefineOwnMetadata(metadataKey, metadataValue, target, propertyKey);
}
return decorator;
}
exporter("metadata", metadata);
/**
* Define a unique metadata entry on the target.
* @param metadataKey A key used to store and retrieve metadata.
* @param metadataValue A value that contains attached metadata.
* @param target The target object on which to define metadata.
* @param propertyKey (Optional) The property key for the target.
* @example
*
* class Example {
* // property declarations are not part of ES6, though they are valid in TypeScript:
* // static staticProperty;
* // property;
*
* constructor(p) { }
* static staticMethod(p) { }
* method(p) { }
* }
*
* // constructor
* Reflect.defineMetadata("custom:annotation", options, Example);
*
* // property (on constructor)
* Reflect.defineMetadata("custom:annotation", options, Example, "staticProperty");
*
* // property (on prototype)
* Reflect.defineMetadata("custom:annotation", options, Example.prototype, "property");
*
* // method (on constructor)
* Reflect.defineMetadata("custom:annotation", options, Example, "staticMethod");
*
* // method (on prototype)
* Reflect.defineMetadata("custom:annotation", options, Example.prototype, "method");
*
* // decorator factory as metadata-producing annotation.
* function MyAnnotation(options): Decorator {
* return (target, key?) => Reflect.defineMetadata("custom:annotation", options, target, key);
* }
*
*/
function defineMetadata(metadataKey, metadataValue, target, propertyKey) {
if (!IsObject(target))
{ throw new TypeError(); }
if (!IsUndefined(propertyKey))
{ propertyKey = ToPropertyKey(propertyKey); }
return OrdinaryDefineOwnMetadata(metadataKey, metadataValue, target, propertyKey);
}
exporter("defineMetadata", defineMetadata);
/**
* Gets a value indicating whether the target object or its prototype chain has the provided metadata key defined.
* @param metadataKey A key used to store and retrieve metadata.
* @param target The target object on which the metadata is defined.
* @param propertyKey (Optional) The property key for the target.
* @returns `true` if the metadata key was defined on the target object or its prototype chain; otherwise, `false`.
* @example
*
* class Example {
* // property declarations are not part of ES6, though they are valid in TypeScript:
* // static staticProperty;
* // property;
*
* constructor(p) { }
* static staticMethod(p) { }
* method(p) { }
* }
*
* // constructor
* result = Reflect.hasMetadata("custom:annotation", Example);
*
* // property (on constructor)
* result = Reflect.hasMetadata("custom:annotation", Example, "staticProperty");
*
* // property (on prototype)
* result = Reflect.hasMetadata("custom:annotation", Example.prototype, "property");
*
* // method (on constructor)
* result = Reflect.hasMetadata("custom:annotation", Example, "staticMethod");
*
* // method (on prototype)
* result = Reflect.hasMetadata("custom:annotation", Example.prototype, "method");
*
*/
function hasMetadata(metadataKey, target, propertyKey) {
if (!IsObject(target))
{ throw new TypeError(); }
if (!IsUndefined(propertyKey))
{ propertyKey = ToPropertyKey(propertyKey); }
return OrdinaryHasMetadata(metadataKey, target, propertyKey);
}
exporter("hasMetadata", hasMetadata);
/**
* Gets a value indicating whether the target object has the provided metadata key defined.
* @param metadataKey A key used to store and retrieve metadata.
* @param target The target object on which the metadata is defined.
* @param propertyKey (Optional) The property key for the target.
* @returns `true` if the metadata key was defined on the target object; otherwise, `false`.
* @example
*
* class Example {
* // property declarations are not part of ES6, though they are valid in TypeScript:
* // static staticProperty;
* // property;
*
* constructor(p) { }
* static staticMethod(p) { }
* method(p) { }
* }
*
* // constructor
* result = Reflect.hasOwnMetadata("custom:annotation", Example);
*
* // property (on constructor)
* result = Reflect.hasOwnMetadata("custom:annotation", Example, "staticProperty");
*
* // property (on prototype)
* result = Reflect.hasOwnMetadata("custom:annotation", Example.prototype, "property");
*
* // method (on constructor)
* result = Reflect.hasOwnMetadata("custom:annotation", Example, "staticMethod");
*
* // method (on prototype)
* result = Reflect.hasOwnMetadata("custom:annotation", Example.prototype, "method");
*
*/
function hasOwnMetadata(metadataKey, target, propertyKey) {
if (!IsObject(target))
{ throw new TypeError(); }
if (!IsUndefined(propertyKey))
{ propertyKey = ToPropertyKey(propertyKey); }
return OrdinaryHasOwnMetadata(metadataKey, target, propertyKey);
}
exporter("hasOwnMetadata", hasOwnMetadata);
/**
* Gets the metadata value for the provided metadata key on the target object or its prototype chain.
* @param metadataKey A key used to store and retrieve metadata.
* @param target The target object on which the metadata is defined.
* @param propertyKey (Optional) The property key for the target.
* @returns The metadata value for the metadata key if found; otherwise, `undefined`.
* @example
*
* class Example {
* // property declarations are not part of ES6, though they are valid in TypeScript:
* // static staticProperty;
* // property;
*
* constructor(p) { }
* static staticMethod(p) { }
* method(p) { }
* }
*
* // constructor
* result = Reflect.getMetadata("custom:annotation", Example);
*
* // property (on constructor)
* result = Reflect.getMetadata("custom:annotation", Example, "staticProperty");
*
* // property (on prototype)
* result = Reflect.getMetadata("custom:annotation", Example.prototype, "property");
*
* // method (on constructor)
* result = Reflect.getMetadata("custom:annotation", Example, "staticMethod");
*
* // method (on prototype)
* result = Reflect.getMetadata("custom:annotation", Example.prototype, "method");
*
*/
function getMetadata(metadataKey, target, propertyKey) {
if (!IsObject(target))
{ throw new TypeError(); }
if (!IsUndefined(propertyKey))
{ propertyKey = ToPropertyKey(propertyKey); }
return OrdinaryGetMetadata(metadataKey, target, propertyKey);
}
exporter("getMetadata", getMetadata);
/**
* Gets the metadata value for the provided metadata key on the target object.
* @param metadataKey A key used to store and retrieve metadata.
* @param target The target object on which the metadata is defined.
* @param propertyKey (Optional) The property key for the target.
* @returns The metadata value for the metadata key if found; otherwise, `undefined`.
* @example
*
* class Example {
* // property declarations are not part of ES6, though they are valid in TypeScript:
* // static staticProperty;
* // property;
*
* constructor(p) { }
* static staticMethod(p) { }
* method(p) { }
* }
*
* // constructor
* result = Reflect.getOwnMetadata("custom:annotation", Example);
*
* // property (on constructor)
* result = Reflect.getOwnMetadata("custom:annotation", Example, "staticProperty");
*
* // property (on prototype)
* result = Reflect.getOwnMetadata("custom:annotation", Example.prototype, "property");
*
* // method (on constructor)
* result = Reflect.getOwnMetadata("custom:annotation", Example, "staticMethod");
*
* // method (on prototype)
* result = Reflect.getOwnMetadata("custom:annotation", Example.prototype, "method");
*
*/
function getOwnMetadata(metadataKey, target, propertyKey) {
if (!IsObject(target))
{ throw new TypeError(); }
if (!IsUndefined(propertyKey))
{ propertyKey = ToPropertyKey(propertyKey); }
return OrdinaryGetOwnMetadata(metadataKey, target, propertyKey);
}
exporter("getOwnMetadata", getOwnMetadata);
/**
* Gets the metadata keys defined on the target object or its prototype chain.
* @param target The target object on which the metadata is defined.
* @param propertyKey (Optional) The property key for the target.
* @returns An array of unique metadata keys.
* @example
*
* class Example {
* // property declarations are not part of ES6, though they are valid in TypeScript:
* // static staticProperty;
* // property;
*
* constructor(p) { }
* static staticMethod(p) { }
* method(p) { }
* }
*
* // constructor
* result = Reflect.getMetadataKeys(Example);
*
* // property (on constructor)
* result = Reflect.getMetadataKeys(Example, "staticProperty");
*
* // property (on prototype)
* result = Reflect.getMetadataKeys(Example.prototype, "property");
*
* // method (on constructor)
* result = Reflect.getMetadataKeys(Example, "staticMethod");
*
* // method (on prototype)
* result = Reflect.getMetadataKeys(Example.prototype, "method");
*
*/
function getMetadataKeys(target, propertyKey) {
if (!IsObject(target))
{ throw new TypeError(); }
if (!IsUndefined(propertyKey))
{ propertyKey = ToPropertyKey(propertyKey); }
return OrdinaryMetadataKeys(target, propertyKey);
}
exporter("getMetadataKeys", getMetadataKeys);
/**
* Gets the unique metadata keys defined on the target object.
* @param target The target object on which the metadata is defined.
* @param propertyKey (Optional) The property key for the target.
* @returns An array of unique metadata keys.
* @example
*
* class Example {
* // property declarations are not part of ES6, though they are valid in TypeScript:
* // static staticProperty;
* // property;
*
* constructor(p) { }
* static staticMethod(p) { }
* method(p) { }
* }
*
* // constructor
* result = Reflect.getOwnMetadataKeys(Example);
*
* // property (on constructor)
* result = Reflect.getOwnMetadataKeys(Example, "staticProperty");
*
* // property (on prototype)
* result = Reflect.getOwnMetadataKeys(Example.prototype, "property");
*
* // method (on constructor)
* result = Reflect.getOwnMetadataKeys(Example, "staticMethod");
*
* // method (on prototype)
* result = Reflect.getOwnMetadataKeys(Example.prototype, "method");
*
*/
function getOwnMetadataKeys(target, propertyKey) {
if (!IsObject(target))
{ throw new TypeError(); }
if (!IsUndefined(propertyKey))
{ propertyKey = ToPropertyKey(propertyKey); }
return OrdinaryOwnMetadataKeys(target, propertyKey);
}
exporter("getOwnMetadataKeys", getOwnMetadataKeys);
/**
* Deletes the metadata entry from the target object with the provided key.
* @param metadataKey A key used to store and retrieve metadata.
* @param target The target object on which the metadata is defined.
* @param propertyKey (Optional) The property key for the target.
* @returns `true` if the metadata entry was found and deleted; otherwise, false.
* @example
*
* class Example {
* // property declarations are not part of ES6, though they are valid in TypeScript:
* // static staticProperty;
* // property;
*
* constructor(p) { }
* static staticMethod(p) { }
* method(p) { }
* }
*
* // constructor
* result = Reflect.deleteMetadata("custom:annotation", Example);
*
* // property (on constructor)
* result = Reflect.deleteMetadata("custom:annotation", Example, "staticProperty");
*
* // property (on prototype)
* result = Reflect.deleteMetadata("custom:annotation", Example.prototype, "property");
*
* // method (on constructor)
* result = Reflect.deleteMetadata("custom:annotation", Example, "staticMethod");
*
* // method (on prototype)
* result = Reflect.deleteMetadata("custom:annotation", Example.prototype, "method");
*
*/
function deleteMetadata(metadataKey, target, propertyKey) {
if (!IsObject(target))
{ throw new TypeError(); }
if (!IsUndefined(propertyKey))
{ propertyKey = ToPropertyKey(propertyKey); }
var metadataMap = GetOrCreateMetadataMap(target, propertyKey, /*Create*/ false);
if (IsUndefined(metadataMap))
{ return false; }
if (!metadataMap.delete(metadataKey))
{ return false; }
if (metadataMap.size > 0)
{ return true; }
var targetMetadata = Metadata.get(target);
targetMetadata.delete(propertyKey);
if (targetMetadata.size > 0)
{ return true; }
Metadata.delete(target);
return true;
}
exporter("deleteMetadata", deleteMetadata);
function DecorateConstructor(decorators, target) {
for (var i = decorators.length - 1; i >= 0; --i) {
var decorator = decorators[i];
var decorated = decorator(target);
if (!IsUndefined(decorated) && !IsNull(decorated)) {
if (!IsConstructor(decorated))
{ throw new TypeError(); }
target = decorated;
}
}
return target;
}
function DecorateProperty(decorators, target, propertyKey, descriptor) {
for (var i = decorators.length - 1; i >= 0; --i) {
var decorator = decorators[i];
var decorated = decorator(target, propertyKey, descriptor);
if (!IsUndefined(decorated) && !IsNull(decorated)) {
if (!IsObject(decorated))
{ throw new TypeError(); }
descriptor = decorated;
}
}
return descriptor;
}
function GetOrCreateMetadataMap(O, P, Create) {
var targetMetadata = Metadata.get(O);
if (IsUndefined(targetMetadata)) {
if (!Create)
{ return undefined; }
targetMetadata = new _Map();
Metadata.set(O, targetMetadata);
}
var metadataMap = targetMetadata.get(P);
if (IsUndefined(metadataMap)) {
if (!Create)
{ return undefined; }
metadataMap = new _Map();
targetMetadata.set(P, metadataMap);
}
return metadataMap;
}
// 3.1.1.1 OrdinaryHasMetadata(MetadataKey, O, P)
// https://rbuckton.github.io/reflect-metadata/#ordinaryhasmetadata
function OrdinaryHasMetadata(MetadataKey, O, P) {
var hasOwn = OrdinaryHasOwnMetadata(MetadataKey, O, P);
if (hasOwn)
{ return true; }
var parent = OrdinaryGetPrototypeOf(O);
if (!IsNull(parent))
{ return OrdinaryHasMetadata(MetadataKey, parent, P); }
return false;
}
// 3.1.2.1 OrdinaryHasOwnMetadata(MetadataKey, O, P)
// https://rbuckton.github.io/reflect-metadata/#ordinaryhasownmetadata
function OrdinaryHasOwnMetadata(MetadataKey, O, P) {
var metadataMap = GetOrCreateMetadataMap(O, P, /*Create*/ false);
if (IsUndefined(metadataMap))
{ return false; }
return ToBoolean(metadataMap.has(MetadataKey));
}
// 3.1.3.1 OrdinaryGetMetadata(MetadataKey, O, P)
// https://rbuckton.github.io/reflect-metadata/#ordinarygetmetadata
function OrdinaryGetMetadata(MetadataKey, O, P) {
var hasOwn = OrdinaryHasOwnMetadata(MetadataKey, O, P);
if (hasOwn)
{ return OrdinaryGetOwnMetadata(MetadataKey, O, P); }
var parent = OrdinaryGetPrototypeOf(O);
if (!IsNull(parent))
{ return OrdinaryGetMetadata(MetadataKey, parent, P); }
return undefined;
}
// 3.1.4.1 OrdinaryGetOwnMetadata(MetadataKey, O, P)
// https://rbuckton.github.io/reflect-metadata/#ordinarygetownmetadata
function OrdinaryGetOwnMetadata(MetadataKey, O, P) {
var metadataMap = GetOrCreateMetadataMap(O, P, /*Create*/ false);
if (IsUndefined(metadataMap))
{ return undefined; }
return metadataMap.get(MetadataKey);
}
// 3.1.5.1 OrdinaryDefineOwnMetadata(MetadataKey, MetadataValue, O, P)
// https://rbuckton.github.io/reflect-metadata/#ordinarydefineownmetadata
function OrdinaryDefineOwnMetadata(MetadataKey, MetadataValue, O, P) {
var metadataMap = GetOrCreateMetadataMap(O, P, /*Create*/ true);
metadataMap.set(MetadataKey, MetadataValue);
}
// 3.1.6.1 OrdinaryMetadataKeys(O, P)
// https://rbuckton.github.io/reflect-metadata/#ordinarymetadatakeys
function OrdinaryMetadataKeys(O, P) {
var ownKeys = OrdinaryOwnMetadataKeys(O, P);
var parent = OrdinaryGetPrototypeOf(O);
if (parent === null)
{ return ownKeys; }
var parentKeys = OrdinaryMetadataKeys(parent, P);
if (parentKeys.length <= 0)
{ return ownKeys; }
if (ownKeys.length <= 0)
{ return parentKeys; }
var set = new _Set();
var keys = [];
for (var _i = 0, ownKeys_1 = ownKeys; _i < ownKeys_1.length; _i++) {
var key = ownKeys_1[_i];
var hasKey = set.has(key);
if (!hasKey) {
set.add(key);
keys.push(key);
}
}
for (var _a = 0, parentKeys_1 = parentKeys; _a < parentKeys_1.length; _a++) {
var key = parentKeys_1[_a];
var hasKey = set.has(key);
if (!hasKey) {
set.add(key);
keys.push(key);
}
}
return keys;
}
// 3.1.7.1 OrdinaryOwnMetadataKeys(O, P)
// https://rbuckton.github.io/reflect-metadata/#ordinaryownmetadatakeys
function OrdinaryOwnMetadataKeys(O, P) {
var keys = [];
var metadataMap = GetOrCreateMetadataMap(O, P, /*Create*/ false);
if (IsUndefined(metadataMap))
{ return keys; }
var keysObj = metadataMap.keys();
var iterator = GetIterator(keysObj);
var k = 0;
while (true) {
var next = IteratorStep(iterator);
if (!next) {
keys.length = k;
return keys;
}
var nextValue = IteratorValue(next);
try {
keys[k] = nextValue;
}
catch (e) {
try {
IteratorClose(iterator);
}
finally {
throw e;
}
}
k++;
}
}
// 6 ECMAScript Data Typ0es and Values
// https://tc39.github.io/ecma262/#sec-ecmascript-data-types-and-values
function Type(x) {
if (x === null)
{ return 1 /* Null */; }
switch (typeof x) {
case "undefined": return 0 /* Undefined */;
case "boolean": return 2 /* Boolean */;
case "string": return 3 /* String */;
case "symbol": return 4 /* Symbol */;
case "number": return 5 /* Number */;
case "object": return x === null ? 1 /* Null */ : 6 /* Object */;
default: return 6 /* Object */;
}
}
// 6.1.1 The Undefined Type
// https://tc39.github.io/ecma262/#sec-ecmascript-language-types-undefined-type
function IsUndefined(x) {
return x === undefined;
}
// 6.1.2 The Null Type
// https://tc39.github.io/ecma262/#sec-ecmascript-language-types-null-type
function IsNull(x) {
return x === null;
}
// 6.1.5 The Symbol Type
// https://tc39.github.io/ecma262/#sec-ecmascript-language-types-symbol-type
function IsSymbol(x) {
return typeof x === "symbol";
}
// 6.1.7 The Object Type
// https://tc39.github.io/ecma262/#sec-object-type
function IsObject(x) {
return typeof x === "object" ? x !== null : typeof x === "function";
}
// 7.1 Type Conversion
// https://tc39.github.io/ecma262/#sec-type-conversion
// 7.1.1 ToPrimitive(input [, PreferredType])
// https://tc39.github.io/ecma262/#sec-toprimitive
function ToPrimitive(input, PreferredType) {
switch (Type(input)) {
case 0 /* Undefined */: return input;
case 1 /* Null */: return input;
case 2 /* Boolean */: return input;
case 3 /* String */: return input;
case 4 /* Symbol */: return input;
case 5 /* Number */: return input;
}
var hint = PreferredType === 3 /* String */ ? "string" : PreferredType === 5 /* Number */ ? "number" : "default";
var exoticToPrim = GetMethod(input, toPrimitiveSymbol);
if (exoticToPrim !== undefined) {
var result = exoticToPrim.call(input, hint);
if (IsObject(result))
{ throw new TypeError(); }
return result;
}
return OrdinaryToPrimitive(input, hint === "default" ? "number" : hint);
}
// 7.1.1.1 OrdinaryToPrimitive(O, hint)
// https://tc39.github.io/ecma262/#sec-ordinarytoprimitive
function OrdinaryToPrimitive(O, hint) {
if (hint === "string") {
var toString_1 = O.toString;
if (IsCallable(toString_1)) {
var result = toString_1.call(O);
if (!IsObject(result))
{ return result; }
}
var valueOf = O.valueOf;
if (IsCallable(valueOf)) {
var result = valueOf.call(O);
if (!IsObject(result))
{ return result; }
}
}
else {
var valueOf = O.valueOf;
if (IsCallable(valueOf)) {
var result = valueOf.call(O);
if (!IsObject(result))
{ return result; }
}
var toString_2 = O.toString;
if (IsCallable(toString_2)) {
var result = toString_2.call(O);
if (!IsObject(result))
{ return result; }
}
}
throw new TypeError();
}
// 7.1.2 ToBoolean(argument)
// https://tc39.github.io/ecma262/2016/#sec-toboolean
function ToBoolean(argument) {
return !!argument;
}
// 7.1.12 ToString(argument)
// https://tc39.github.io/ecma262/#sec-tostring
function ToString(argument) {
return "" + argument;
}
// 7.1.14 ToPropertyKey(argument)
// https://tc39.github.io/ecma262/#sec-topropertykey
function ToPropertyKey(argument) {
var key = ToPrimitive(argument, 3 /* String */);
if (IsSymbol(key))
{ return key; }
return ToString(key);
}
// 7.2 Testing and Comparison Operations
// https://tc39.github.io/ecma262/#sec-testing-and-comparison-operations
// 7.2.2 IsArray(argument)
// https://tc39.github.io/ecma262/#sec-isarray
function IsArray(argument) {
return Array.isArray
? Array.isArray(argument)
: argument instanceof Object
? argument instanceof Array
: Object.prototype.toString.call(argument) === "[object Array]";
}
// 7.2.3 IsCallable(argument)
// https://tc39.github.io/ecma262/#sec-iscallable
function IsCallable(argument) {
// NOTE: This is an approximation as we cannot check for [[Call]] internal method.
return typeof argument === "function";
}
// 7.2.4 IsConstructor(argument)
// https://tc39.github.io/ecma262/#sec-isconstructor
function IsConstructor(argument) {
// NOTE: This is an approximation as we cannot check for [[Construct]] internal method.
return typeof argument === "function";
}
// 7.2.7 IsPropertyKey(argument)
// https://tc39.github.io/ecma262/#sec-ispropertykey
function IsPropertyKey(argument) {
switch (Type(argument)) {
case 3 /* String */: return true;
case 4 /* Symbol */: return true;
default: return false;
}
}
// 7.3 Operations on Objects
// https://tc39.github.io/ecma262/#sec-operations-on-objects
// 7.3.9 GetMethod(V, P)
// https://tc39.github.io/ecma262/#sec-getmethod
function GetMethod(V, P) {
var func = V[P];
if (func === undefined || func === null)
{ return undefined; }
if (!IsCallable(func))
{ throw new TypeError(); }
return func;
}
// 7.4 Operations on Iterator Objects
// https://tc39.github.io/ecma262/#sec-operations-on-iterator-objects
function GetIterator(obj) {
var method = GetMethod(obj, iteratorSymbol);
if (!IsCallable(method))
{ throw new TypeError(); } // from Call
var iterator = method.call(obj);
if (!IsObject(iterator))
{ throw new TypeError(); }
return iterator;
}
// 7.4.4 IteratorValue(iterResult)
// https://tc39.github.io/ecma262/2016/#sec-iteratorvalue
function IteratorValue(iterResult) {
return iterResult.value;
}
// 7.4.5 IteratorStep(iterator)
// https://tc39.github.io/ecma262/#sec-iteratorstep
function IteratorStep(iterator) {
var result = iterator.next();
return result.done ? false : result;
}
// 7.4.6 IteratorClose(iterator, completion)
// https://tc39.github.io/ecma262/#sec-iteratorclose
function IteratorClose(iterator) {
var f = iterator["return"];
if (f)
{ f.call(iterator); }
}
// 9.1 Ordinary Object Internal Methods and Internal Slots
// https://tc39.github.io/ecma262/#sec-ordinary-object-internal-methods-and-internal-slots
// 9.1.1.1 OrdinaryGetPrototypeOf(O)
// https://tc39.github.io/ecma262/#sec-ordinarygetprototypeof
function OrdinaryGetPrototypeOf(O) {
var proto = Object.getPrototypeOf(O);
if (typeof O !== "function" || O === functionPrototype)
{ return proto; }
// TypeScript doesn't set __proto__ in ES5, as it's non-standard.
// Try to determine the superclass constructor. Compatible implementations
// must either set __proto__ on a subclass constructor to the superclass constructor,
// or ensure each class has a valid `constructor` property on its prototype that
// points back to the constructor.
// If this is not the same as Function.[[Prototype]], then this is definately inherited.
// This is the case when in ES6 or when using __proto__ in a compatible browser.
if (proto !== functionPrototype)
{ return proto; }
// If the super prototype is Object.prototype, null, or undefined, then we cannot determine the heritage.
var prototype = O.prototype;
var prototypeProto = prototype && Object.getPrototypeOf(prototype);
if (prototypeProto == null || prototypeProto === Object.prototype)
{ return proto; }
// If the constructor was not a function, then we cannot determine the heritage.
var constructor = prototypeProto.constructor;
if (typeof constructor !== "function")
{ return proto; }
// If we have some kind of self-reference, then we cannot determine the heritage.
if (constructor === O)
{ return proto; }
// we have a pretty good guess at the heritage.
return constructor;
}
// naive Map shim
function CreateMapPolyfill() {
var cacheSentinel = {};
var arraySentinel = [];
var MapIterator = /** @class */ (function () {
function MapIterator(keys, values, selector) {
this._index = 0;
this._keys = keys;
this._values = values;
this._selector = selector;
}
MapIterator.prototype["@@iterator"] = function () { return this; };
MapIterator.prototype[iteratorSymbol] = function () { return this; };
MapIterator.prototype.next = function () {
var index = this._index;
if (index >= 0 && index < this._keys.length) {
var result = this._selector(this._keys[index], this._values[index]);
if (index + 1 >= this._keys.length) {
this._index = -1;
this._keys = arraySentinel;
this._values = arraySentinel;
}
else {
this._index++;
}
return { value: result, done: false };
}
return { value: undefined, done: true };
};
MapIterator.prototype.throw = function (error) {
if (this._index >= 0) {
this._index = -1;
this._keys = arraySentinel;
this._values = arraySentinel;
}
throw error;
};
MapIterator.prototype.return = function (value) {
if (this._index >= 0) {
this._index = -1;
this._keys = arraySentinel;
this._values = arraySentinel;
}
return { value: value, done: true };
};
return MapIterator;
}());
return /** @class */ (function () {
function Map() {
this._keys = [];
this._values = [];
this._cacheKey = cacheSentinel;
this._cacheIndex = -2;
}
Object.defineProperty(Map.prototype, "size", {
get: function () { return this._keys.length; },
enumerable: true,
configurable: true
});
Map.prototype.has = function (key) { return this._find(key, /*insert*/ false) >= 0; };
Map.prototype.get = function (key) {
var index = this._find(key, /*insert*/ false);
return index >= 0 ? this._values[index] : undefined;
};
Map.prototype.set = function (key, value) {
var index = this._find(key, /*insert*/ true);
this._values[index] = value;
return this;
};
Map.prototype.delete = function (key) {
var index = this._find(key, /*insert*/ false);
if (index >= 0) {
var size = this._keys.length;
for (var i = index + 1; i < size; i++) {
this._keys[i - 1] = this._keys[i];
this._values[i - 1] = this._values[i];
}
this._keys.length--;
this._values.length--;
if (key === this._cacheKey) {
this._cacheKey = cacheSentinel;
this._cacheIndex = -2;
}
return true;
}
return false;
};
Map.prototype.clear = function () {
this._keys.length = 0;
this._values.length = 0;
this._cacheKey = cacheSentinel;
this._cacheIndex = -2;
};
Map.prototype.keys = function () { return new MapIterator(this._keys, this._values, getKey); };
Map.prototype.values = function () { return new MapIterator(this._keys, this._values, getValue); };
Map.prototype.entries = function () { return new MapIterator(this._keys, this._values, getEntry); };
Map.prototype["@@iterator"] = function () { return this.entries(); };
Map.prototype[iteratorSymbol] = function () { return this.entries(); };
Map.prototype._find = function (key, insert) {
if (this._cacheKey !== key) {
this._cacheIndex = this._keys.indexOf(this._cacheKey = key);
}
if (this._cacheIndex < 0 && insert) {
this._cacheIndex = this._keys.length;
this._keys.push(key);
this._values.push(undefined);
}
return this._cacheIndex;
};
return Map;
}());
function getKey(key, _) {
return key;
}
function getValue(_, value) {
return value;
}
function getEntry(key, value) {
return [key, value];
}
}
// naive Set shim
function CreateSetPolyfill() {
return /** @class */ (function () {
function Set() {
this._map = new _Map();
}
Object.defineProperty(Set.prototype, "size", {
get: function () { return this._map.size; },
enumerable: true,
configurable: true
});
Set.prototype.has = function (value) { return this._map.has(value); };
Set.prototype.add = function (value) { return this._map.set(value, value), this; };
Set.prototype.delete = function (value) { return this._map.delete(value); };
Set.prototype.clear = function () { this._map.clear(); };
Set.prototype.keys = function () { return this._map.keys(); };
Set.prototype.values = function () { return this._map.values(); };
Set.prototype.entries = function () { return this._map.entries(); };
Set.prototype["@@iterator"] = function () { return this.keys(); };
Set.prototype[iteratorSymbol] = function () { return this.keys(); };
return Set;
}());
}
// naive WeakMap shim
function CreateWeakMapPolyfill() {
var UUID_SIZE = 16;
var keys = HashMap.create();
var rootKey = CreateUniqueKey();
return /** @class */ (function () {
function WeakMap() {
this._key = CreateUniqueKey();
}
WeakMap.prototype.has = function (target) {
var table = GetOrCreateWeakMapTable(target, /*create*/ false);
return table !== undefined ? HashMap.has(table, this._key) : false;
};
WeakMap.prototype.get = function (target) {
var table = GetOrCreateWeakMapTable(target, /*create*/ false);
return table !== undefined ? HashMap.get(table, this._key) : undefined;
};
WeakMap.prototype.set = function (target, value) {
var table = GetOrCreateWeakMapTable(target, /*create*/ true);
table[this._key] = value;
return this;
};
WeakMap.prototype.delete = function (target) {
var table = GetOrCreateWeakMapTable(target, /*create*/ false);
return table !== undefined ? delete table[this._key] : false;
};
WeakMap.prototype.clear = function () {
// NOTE: not a real clear, just makes the previous data unreachable
this._key = CreateUniqueKey();
};
return WeakMap;
}());
function CreateUniqueKey() {
var key;
do
{ key = "@@WeakMap@@" + CreateUUID(); }
while (HashMap.has(keys, key));
keys[key] = true;
return key;
}
function GetOrCreateWeakMapTable(target, create) {
if (!hasOwn.call(target, rootKey)) {
if (!create)
{ return undefined; }
Object.defineProperty(target, rootKey, { value: HashMap.create() });
}
return target[rootKey];
}
function FillRandomBytes(buffer, size) {
for (var i = 0; i < size; ++i)
{ buffer[i] = Math.random() * 0xff | 0; }
return buffer;
}
function GenRandomBytes(size) {
if (typeof Uint8Array === "function") {
if (typeof crypto !== "undefined")
{ return crypto.getRandomValues(new Uint8Array(size)); }
if (typeof msCrypto !== "undefined")
{ return msCrypto.getRandomValues(new Uint8Array(size)); }
return FillRandomBytes(new Uint8Array(size), size);
}
return FillRandomBytes(new Array(size), size);
}
function CreateUUID() {
var data = GenRandomBytes(UUID_SIZE);
// mark as random - RFC 4122 § 4.4
data[6] = data[6] & 0x4f | 0x40;
data[8] = data[8] & 0xbf | 0x80;
var result = "";
for (var offset = 0; offset < UUID_SIZE; ++offset) {
var byte = data[offset];
if (offset === 4 || offset === 6 || offset === 8)
{ result += "-"; }
if (byte < 16)
{ result += "0"; }
result += byte.toString(16).toLowerCase();
}
return result;
}
}
// uses a heuristic used by v8 and chakra to force an object into dictionary mode.
function MakeDictionary(obj) {
obj.__ = undefined;
delete obj.__;
return obj;
}
});
})(Reflect$1 || (Reflect$1 = {}));
2020-09-05 11:14:22 +08:00
/*
* Copyright [2019] [Doric.Pub]
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2020-01-17 14:55:39 +08:00
function hookBeforeNativeCall(context) {
if (context) {
2021-09-16 12:52:02 +08:00
setContext(context);
2020-01-17 14:55:39 +08:00
context.hookBeforeNativeCall();
}
}
function getContext() {
2021-03-02 10:28:33 +08:00
return Reflect.getMetadata('__doric_context__', global$2);
2020-01-17 14:55:39 +08:00
}
function setContext(context) {
2021-03-02 10:28:33 +08:00
Reflect.defineMetadata('__doric_context__', context, global$2);
2020-01-17 14:55:39 +08:00
}
function jsCallResolve(contextId, callbackId, args) {
var arguments$1 = arguments;
var context = gContexts.get(contextId);
if (context === undefined) {
loge("Cannot find context for context id:" + contextId);
return;
}
var callback = context.callbacks.get(callbackId);
if (callback === undefined) {
loge("Cannot find call for context id:" + contextId + ",callback id:" + callbackId);
return;
}
var argumentsList = [];
for (var i = 2; i < arguments.length; i++) {
argumentsList.push(arguments$1[i]);
}
hookBeforeNativeCall(context);
Reflect.apply(callback.resolve, context, argumentsList);
}
function jsCallReject(contextId, callbackId, args) {
var arguments$1 = arguments;
var context = gContexts.get(contextId);
if (context === undefined) {
loge("Cannot find context for context id:" + contextId);
return;
}
var callback = context.callbacks.get(callbackId);
if (callback === undefined) {
loge("Cannot find call for context id:" + contextId + ",callback id:" + callbackId);
return;
}
var argumentsList = [];
for (var i = 2; i < arguments.length; i++) {
argumentsList.push(arguments$1[i]);
}
hookBeforeNativeCall(context);
Reflect.apply(callback.reject, context.entity, argumentsList);
}
var Context = /** @class */ (function () {
function Context(id) {
this.callbacks = new Map;
2020-09-04 18:22:45 +08:00
this.classes = new Map;
2020-01-17 14:55:39 +08:00
this.id = id;
}
Context.prototype.hookBeforeNativeCall = function () {
if (this.entity && Reflect.has(this.entity, 'hookBeforeNativeCall')) {
Reflect.apply(Reflect.get(this.entity, 'hookBeforeNativeCall'), this.entity, []);
}
};
Context.prototype.hookAfterNativeCall = function () {
if (this.entity && Reflect.has(this.entity, 'hookAfterNativeCall')) {
Reflect.apply(Reflect.get(this.entity, 'hookAfterNativeCall'), this.entity, []);
}
};
Context.prototype.callNative = function (namespace, method, args) {
var _this = this;
var callbackId = uniqueId('callback');
return new Promise(function (resolve, reject) {
_this.callbacks.set(callbackId, {
resolve: resolve,
reject: reject,
});
2021-06-22 16:36:34 +08:00
nativeBridge(_this.id, namespace, method, callbackId, args);
2020-01-17 14:55:39 +08:00
});
};
Context.prototype.register = function (instance) {
this.entity = instance;
};
Context.prototype.function2Id = function (func) {
var functionId = uniqueId('function');
this.callbacks.set(functionId, {
resolve: func,
reject: function () { loge("This should not be called"); }
});
return functionId;
};
Context.prototype.removeFuncById = function (funcId) {
this.callbacks.delete(funcId);
};
return Context;
}());
var gContexts = new Map;
var gModules = new Map;
function allContexts() {
return gContexts.values();
}
2020-01-17 14:55:39 +08:00
function jsObtainContext(id) {
if (gContexts.has(id)) {
var context_1 = gContexts.get(id);
setContext(context_1);
return context_1;
}
else {
var context_2 = new Context(id);
gContexts.set(id, context_2);
setContext(context_2);
return context_2;
}
}
function jsReleaseContext(id) {
var context = gContexts.get(id);
var args = arguments;
if (context) {
timerInfos.forEach(function (v, k) {
if (v.context === context) {
2021-03-02 10:28:33 +08:00
if (global$2.nativeClearTimer === undefined) {
2020-01-17 14:55:39 +08:00
return Reflect.apply(_clearTimeout, undefined, args);
}
timerInfos.delete(k);
nativeClearTimer(k);
}
});
}
gContexts.delete(id);
}
function __require__(name) {
if (gModules.has(name)) {
return gModules.get(name);
}
else {
if (nativeRequire(name)) {
return gModules.get(name);
}
else {
return undefined;
}
}
}
function jsRegisterModule(name, moduleObject) {
gModules.set(name, moduleObject);
}
function jsCallEntityMethod(contextId, methodName, args) {
var arguments$1 = arguments;
var context = gContexts.get(contextId);
if (context === undefined) {
loge("Cannot find context for context id:" + contextId);
return;
}
if (context.entity === undefined) {
loge("Cannot find holder for context id:" + contextId);
return;
}
if (Reflect.has(context.entity, methodName)) {
var argumentsList = [];
for (var i = 2; i < arguments.length; i++) {
argumentsList.push(arguments$1[i]);
}
hookBeforeNativeCall(context);
var ret = Reflect.apply(Reflect.get(context.entity, methodName), context.entity, argumentsList);
return ret;
}
else {
loge("Cannot find method for context id:" + contextId + ",method name is:" + methodName);
}
}
function pureCallEntityMethod(contextId, methodName, args) {
var arguments$1 = arguments;
var context = gContexts.get(contextId);
if (context === undefined) {
loge("Cannot find context for context id:" + contextId);
return;
}
if (context.entity === undefined) {
loge("Cannot find holder for context id:" + contextId);
return;
}
if (Reflect.has(context.entity, methodName)) {
var argumentsList = [];
for (var i = 2; i < arguments.length; i++) {
argumentsList.push(arguments$1[i]);
}
return Reflect.apply(Reflect.get(context.entity, methodName), context.entity, argumentsList);
}
else {
loge("Cannot find method for context id:" + contextId + ",method name is:" + methodName);
}
}
2020-01-17 14:55:39 +08:00
function jsObtainEntry(contextId) {
var context = jsObtainContext(contextId);
2020-09-04 17:05:51 +08:00
var exportFunc = function (constructor) {
2020-09-05 11:14:22 +08:00
context === null || context === void 0 ? void 0 : context.classes.set(constructor.name, constructor);
var ret = new constructor;
Reflect.set(ret, 'context', context);
context === null || context === void 0 ? void 0 : context.register(ret);
return constructor;
2020-01-17 14:55:39 +08:00
};
2020-09-04 18:22:45 +08:00
return function () {
if (arguments.length === 1) {
var args = arguments[0];
if (args instanceof Array) {
args.forEach(function (clz) {
var _a;
(_a = context === null || context === void 0 ? void 0 : context.classes) === null || _a === void 0 ? void 0 : _a.set(clz.name, clz);
});
return exportFunc;
}
else {
return exportFunc(args);
}
}
else if (arguments.length === 2) {
var srcContextId = arguments[0];
var className = arguments[1];
var srcContext = gContexts.get(srcContextId);
if (srcContext) {
2021-08-24 11:58:04 +08:00
srcContext.classes.forEach(function (v, k) {
context === null || context === void 0 ? void 0 : context.classes.set(k, v);
});
2020-09-04 18:22:45 +08:00
var clz = srcContext.classes.get(className);
if (clz) {
return exportFunc(clz);
}
else {
throw new Error("Cannot find class:" + className + " in context:" + srcContextId);
}
}
else {
throw new Error("Cannot find context for " + srcContextId);
}
2020-09-04 17:05:51 +08:00
}
else {
2020-09-04 18:22:45 +08:00
throw new Error("Entry arguments error:" + arguments);
2020-09-04 17:05:51 +08:00
}
};
2020-01-17 14:55:39 +08:00
}
2021-03-02 10:28:33 +08:00
var global$2 = Function('return this')();
2021-11-29 10:29:26 +08:00
if (!Reflect.has(global$2, "console")) {
Reflect.set(global$2, "console", {
warn: logw,
error: loge,
log: log$9
});
}
2021-02-26 19:01:42 +08:00
var __timerId__ = 1;
2020-01-17 14:55:39 +08:00
var timerInfos = new Map;
2021-03-02 10:28:33 +08:00
var _setTimeout = global$2.setTimeout;
var _setInterval = global$2.setInterval;
var _clearTimeout = global$2.clearTimeout;
var _clearInterval = global$2.clearInterval;
2020-01-17 14:55:39 +08:00
var doricSetTimeout = function (handler, timeout) {
var arguments$1 = arguments;
var args = [];
for (var _i = 2; _i < arguments.length; _i++) {
args[_i - 2] = arguments$1[_i];
}
2021-03-02 10:28:33 +08:00
if (global$2.nativeSetTimer === undefined) {
2020-01-17 14:55:39 +08:00
return Reflect.apply(_setTimeout, undefined, arguments);
}
var id = __timerId__++;
timerInfos.set(id, {
callback: function () {
Reflect.apply(handler, undefined, args);
timerInfos.delete(id);
},
context: getContext(),
});
nativeSetTimer(id, timeout || 0, false);
return id;
};
var doricSetInterval = function (handler, timeout) {
var arguments$1 = arguments;
var args = [];
for (var _i = 2; _i < arguments.length; _i++) {
args[_i - 2] = arguments$1[_i];
}
2021-03-02 10:28:33 +08:00
if (global$2.nativeSetTimer === undefined) {
2020-01-17 14:55:39 +08:00
return Reflect.apply(_setInterval, undefined, arguments);
}
var id = __timerId__++;
timerInfos.set(id, {
callback: function () {
Reflect.apply(handler, undefined, args);
},
context: getContext(),
});
nativeSetTimer(id, timeout || 0, true);
return id;
};
var doricClearTimeout = function (timerId) {
2021-03-02 10:28:33 +08:00
if (global$2.nativeClearTimer === undefined) {
2020-01-17 14:55:39 +08:00
return Reflect.apply(_clearTimeout, undefined, arguments);
}
timerInfos.delete(timerId);
nativeClearTimer(timerId);
};
var doricClearInterval = function (timerId) {
2021-03-02 10:28:33 +08:00
if (global$2.nativeClearTimer === undefined) {
2020-01-17 14:55:39 +08:00
return Reflect.apply(_clearInterval, undefined, arguments);
}
timerInfos.delete(timerId);
nativeClearTimer(timerId);
};
2021-03-02 10:28:33 +08:00
if (!global$2.setTimeout) {
global$2.setTimeout = doricSetTimeout;
2020-01-17 14:55:39 +08:00
}
else {
2021-03-02 10:28:33 +08:00
global$2.doricSetTimeout = doricSetTimeout;
2020-01-17 14:55:39 +08:00
}
2021-03-02 10:28:33 +08:00
if (!global$2.setInterval) {
global$2.setInterval = doricSetInterval;
2020-01-17 14:55:39 +08:00
}
else {
2021-03-02 10:28:33 +08:00
global$2.doricSetInterval = doricSetInterval;
2020-01-17 14:55:39 +08:00
}
2021-03-02 10:28:33 +08:00
if (!global$2.clearTimeout) {
global$2.clearTimeout = doricClearTimeout;
2020-01-17 14:55:39 +08:00
}
else {
2021-03-02 10:28:33 +08:00
global$2.doricClearTimeout = doricClearTimeout;
2020-01-17 14:55:39 +08:00
}
2021-03-02 10:28:33 +08:00
if (!global$2.clearInterval) {
global$2.clearInterval = doricClearInterval;
2020-01-17 14:55:39 +08:00
}
else {
2021-03-02 10:28:33 +08:00
global$2.doricClearInterval = doricClearInterval;
2020-01-17 14:55:39 +08:00
}
function jsCallbackTimer(timerId) {
var timerInfo = timerInfos.get(timerId);
if (timerInfo === undefined) {
return;
}
if (timerInfo.callback instanceof Function) {
setContext(timerInfo.context);
2020-01-17 14:55:39 +08:00
hookBeforeNativeCall(timerInfo.context);
Reflect.apply(timerInfo.callback, timerInfo.context, []);
}
}
function jsHookAfterNativeCall() {
var context = getContext();
context === null || context === void 0 ? void 0 : context.hookAfterNativeCall();
}
2020-01-17 14:55:39 +08:00
var check = function (it) {
return it && it.Math == Math && it;
};
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
var global_1 =
// eslint-disable-next-line es/no-global-this -- safe
2020-01-17 14:55:39 +08:00
check(typeof globalThis == 'object' && globalThis) ||
check(typeof window == 'object' && window) ||
// eslint-disable-next-line no-restricted-globals -- safe
2020-01-17 14:55:39 +08:00
check(typeof self == 'object' && self) ||
check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
2021-02-19 17:33:10 +08:00
// eslint-disable-next-line no-new-func -- fallback
(function () { return this; })() || Function('return this')();
2020-01-17 14:55:39 +08:00
var fails = function (exec) {
try {
return !!exec();
} catch (error) {
return true;
}
};
2021-02-19 17:33:10 +08:00
// Detect IE8's incomplete defineProperty implementation
2020-01-17 14:55:39 +08:00
var descriptors = !fails(function () {
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
2020-01-17 14:55:39 +08:00
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
});
2021-10-29 14:30:00 +08:00
var call$2 = Function.prototype.call;
var functionCall = call$2.bind ? call$2.bind(call$2) : function () {
return call$2.apply(call$2, arguments);
};
var $propertyIsEnumerable$2 = {}.propertyIsEnumerable;
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
2021-03-02 10:28:33 +08:00
var getOwnPropertyDescriptor$8 = Object.getOwnPropertyDescriptor;
2020-01-17 14:55:39 +08:00
// Nashorn ~ JDK8 bug
2021-10-29 14:30:00 +08:00
var NASHORN_BUG = getOwnPropertyDescriptor$8 && !$propertyIsEnumerable$2.call({ 1: 2 }, 1);
2020-01-17 14:55:39 +08:00
// `Object.prototype.propertyIsEnumerable` method implementation
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
2021-03-02 10:28:33 +08:00
var f$7 = NASHORN_BUG ? function propertyIsEnumerable(V) {
var descriptor = getOwnPropertyDescriptor$8(this, V);
2020-01-17 14:55:39 +08:00
return !!descriptor && descriptor.enumerable;
2021-10-29 14:30:00 +08:00
} : $propertyIsEnumerable$2;
2020-01-17 14:55:39 +08:00
var objectPropertyIsEnumerable = {
2021-03-02 10:28:33 +08:00
f: f$7
2020-01-17 14:55:39 +08:00
};
var createPropertyDescriptor = function (bitmap, value) {
return {
enumerable: !(bitmap & 1),
configurable: !(bitmap & 2),
writable: !(bitmap & 4),
value: value
};
};
2021-10-29 14:30:00 +08:00
var FunctionPrototype$4 = Function.prototype;
var bind$3 = FunctionPrototype$4.bind;
var call$1 = FunctionPrototype$4.call;
var callBind = bind$3 && bind$3.bind(call$1);
var functionUncurryThis = bind$3 ? function (fn) {
return fn && callBind(call$1, fn);
} : function (fn) {
return fn && function () {
return call$1.apply(fn, arguments);
};
};
var toString$1 = functionUncurryThis({}.toString);
var stringSlice$g = functionUncurryThis(''.slice);
2020-01-17 14:55:39 +08:00
var classofRaw = function (it) {
2021-10-29 14:30:00 +08:00
return stringSlice$g(toString$1(it), 8, -1);
2020-01-17 14:55:39 +08:00
};
2021-10-29 14:30:00 +08:00
var Object$7 = global_1.Object;
var split$4 = functionUncurryThis(''.split);
2020-01-17 14:55:39 +08:00
// fallback for non-array-like ES3 and non-enumerable old V8 strings
var indexedObject = fails(function () {
// throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
2021-02-19 17:33:10 +08:00
// eslint-disable-next-line no-prototype-builtins -- safe
2021-10-29 14:30:00 +08:00
return !Object$7('z').propertyIsEnumerable(0);
2020-01-17 14:55:39 +08:00
}) ? function (it) {
2021-10-29 14:30:00 +08:00
return classofRaw(it) == 'String' ? split$4(it, '') : Object$7(it);
} : Object$7;
var TypeError$F = global_1.TypeError;
2020-01-17 14:55:39 +08:00
// `RequireObjectCoercible` abstract operation
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-requireobjectcoercible
2020-01-17 14:55:39 +08:00
var requireObjectCoercible = function (it) {
2021-10-29 14:30:00 +08:00
if (it == undefined) { throw TypeError$F("Can't call method on " + it); }
2020-01-17 14:55:39 +08:00
return it;
};
// toObject with fallback for non-array-like ES3 strings
var toIndexedObject = function (it) {
return indexedObject(requireObjectCoercible(it));
};
2021-10-29 14:30:00 +08:00
// `IsCallable` abstract operation
// https://tc39.es/ecma262/#sec-iscallable
var isCallable = function (argument) {
return typeof argument == 'function';
};
2020-01-17 14:55:39 +08:00
var isObject = function (it) {
2021-10-29 14:30:00 +08:00
return typeof it == 'object' ? it !== null : isCallable(it);
2020-01-17 14:55:39 +08:00
};
2021-10-29 14:30:00 +08:00
var aFunction = function (argument) {
return isCallable(argument) ? argument : undefined;
};
var getBuiltIn = function (namespace, method) {
return arguments.length < 2 ? aFunction(global_1[namespace]) : global_1[namespace] && global_1[namespace][method];
};
var objectIsPrototypeOf = functionUncurryThis({}.isPrototypeOf);
var engineUserAgent = getBuiltIn('navigator', 'userAgent') || '';
var process$5 = global_1.process;
var Deno = global_1.Deno;
var versions = process$5 && process$5.versions || Deno && Deno.version;
var v8 = versions && versions.v8;
var match, version;
if (v8) {
match = v8.split('.');
// in old Chrome, versions of V8 isn't V8 = Chrome / 10
// but their correct versions are not interesting for us
version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
}
// BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
// so check `userAgent` even if `.v8` exists, but 0
if (!version && engineUserAgent) {
match = engineUserAgent.match(/Edge\/(\d+)/);
if (!match || match[1] >= 74) {
match = engineUserAgent.match(/Chrome\/(\d+)/);
if (match) { version = +match[1]; }
}
}
var engineV8Version = version;
/* eslint-disable es/no-symbol -- required for testing */
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () {
var symbol = Symbol();
// Chrome 38 Symbol has incorrect toString conversion
// `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
// Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
!Symbol.sham && engineV8Version && engineV8Version < 41;
});
/* eslint-disable es/no-symbol -- required for testing */
var useSymbolAsUid = nativeSymbol
&& !Symbol.sham
&& typeof Symbol.iterator == 'symbol';
var Object$6 = global_1.Object;
var isSymbol = useSymbolAsUid ? function (it) {
return typeof it == 'symbol';
} : function (it) {
var $Symbol = getBuiltIn('Symbol');
return isCallable($Symbol) && objectIsPrototypeOf($Symbol.prototype, Object$6(it));
};
var String$6 = global_1.String;
var tryToString = function (argument) {
try {
return String$6(argument);
} catch (error) {
return 'Object';
}
};
var TypeError$E = global_1.TypeError;
// `Assert: IsCallable(argument) is true`
var aCallable = function (argument) {
if (isCallable(argument)) { return argument; }
throw TypeError$E(tryToString(argument) + ' is not a function');
};
// `GetMethod` abstract operation
// https://tc39.es/ecma262/#sec-getmethod
var getMethod = function (V, P) {
var func = V[P];
return func == null ? undefined : aCallable(func);
};
var TypeError$D = global_1.TypeError;
// `OrdinaryToPrimitive` abstract operation
// https://tc39.es/ecma262/#sec-ordinarytoprimitive
var ordinaryToPrimitive = function (input, pref) {
2020-01-17 14:55:39 +08:00
var fn, val;
2021-10-29 14:30:00 +08:00
if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = functionCall(fn, input))) { return val; }
if (isCallable(fn = input.valueOf) && !isObject(val = functionCall(fn, input))) { return val; }
if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = functionCall(fn, input))) { return val; }
throw TypeError$D("Can't convert object to primitive value");
};
var isPure = false;
// eslint-disable-next-line es/no-object-defineproperty -- safe
var defineProperty$f = Object.defineProperty;
var setGlobal = function (key, value) {
try {
defineProperty$f(global_1, key, { value: value, configurable: true, writable: true });
} catch (error) {
global_1[key] = value;
} return value;
2020-01-17 14:55:39 +08:00
};
2021-10-29 14:30:00 +08:00
var SHARED = '__core-js_shared__';
var store$3 = global_1[SHARED] || setGlobal(SHARED, {});
var sharedStore = store$3;
var shared = createCommonjsModule(function (module) {
(module.exports = function (key, value) {
return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {});
})('versions', []).push({
version: '3.19.0',
mode: 'global',
copyright: '© 2021 Denis Pushkarev (zloirock.ru)'
});
});
var Object$5 = global_1.Object;
// `ToObject` abstract operation
// https://tc39.es/ecma262/#sec-toobject
var toObject = function (argument) {
2021-10-29 14:30:00 +08:00
return Object$5(requireObjectCoercible(argument));
};
var hasOwnProperty = functionUncurryThis({}.hasOwnProperty);
// `HasOwnProperty` abstract operation
// https://tc39.es/ecma262/#sec-hasownproperty
var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
return hasOwnProperty(toObject(it), key);
};
var id$1 = 0;
var postfix = Math.random();
var toString = functionUncurryThis(1.0.toString);
var uid = function (key) {
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id$1 + postfix, 36);
};
var WellKnownSymbolsStore$1 = shared('wks');
var Symbol$3 = global_1.Symbol;
var symbolFor = Symbol$3 && Symbol$3['for'];
var createWellKnownSymbol = useSymbolAsUid ? Symbol$3 : Symbol$3 && Symbol$3.withoutSetter || uid;
var wellKnownSymbol = function (name) {
if (!hasOwnProperty_1(WellKnownSymbolsStore$1, name) || !(nativeSymbol || typeof WellKnownSymbolsStore$1[name] == 'string')) {
var description = 'Symbol.' + name;
if (nativeSymbol && hasOwnProperty_1(Symbol$3, name)) {
WellKnownSymbolsStore$1[name] = Symbol$3[name];
} else if (useSymbolAsUid && symbolFor) {
WellKnownSymbolsStore$1[name] = symbolFor(description);
} else {
WellKnownSymbolsStore$1[name] = createWellKnownSymbol(description);
}
} return WellKnownSymbolsStore$1[name];
};
2021-10-29 14:30:00 +08:00
var TypeError$C = global_1.TypeError;
var TO_PRIMITIVE$2 = wellKnownSymbol('toPrimitive');
// `ToPrimitive` abstract operation
// https://tc39.es/ecma262/#sec-toprimitive
var toPrimitive = function (input, pref) {
if (!isObject(input) || isSymbol(input)) { return input; }
var exoticToPrim = getMethod(input, TO_PRIMITIVE$2);
var result;
if (exoticToPrim) {
if (pref === undefined) { pref = 'default'; }
result = functionCall(exoticToPrim, input, pref);
if (!isObject(result) || isSymbol(result)) { return result; }
throw TypeError$C("Can't convert object to primitive value");
}
if (pref === undefined) { pref = 'number'; }
return ordinaryToPrimitive(input, pref);
};
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
// `ToPropertyKey` abstract operation
// https://tc39.es/ecma262/#sec-topropertykey
var toPropertyKey = function (argument) {
var key = toPrimitive(argument, 'string');
return isSymbol(key) ? key : key + '';
2020-01-17 14:55:39 +08:00
};
2021-03-02 10:28:33 +08:00
var document$3 = global_1.document;
2020-01-17 14:55:39 +08:00
// typeof document.createElement is 'object' in old IE
2021-10-29 14:30:00 +08:00
var EXISTS$1 = isObject(document$3) && isObject(document$3.createElement);
2020-01-17 14:55:39 +08:00
var documentCreateElement = function (it) {
2021-10-29 14:30:00 +08:00
return EXISTS$1 ? document$3.createElement(it) : {};
2020-01-17 14:55:39 +08:00
};
// Thank's IE8 for his funny defineProperty
var ie8DomDefine = !descriptors && !fails(function () {
// eslint-disable-next-line es/no-object-defineproperty -- requied for testing
2020-01-17 14:55:39 +08:00
return Object.defineProperty(documentCreateElement('div'), 'a', {
get: function () { return 7; }
}).a != 7;
});
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
2020-01-17 14:55:39 +08:00
// `Object.getOwnPropertyDescriptor` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
var f$6 = descriptors ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
2020-01-17 14:55:39 +08:00
O = toIndexedObject(O);
2021-10-29 14:30:00 +08:00
P = toPropertyKey(P);
2020-01-17 14:55:39 +08:00
if (ie8DomDefine) { try {
return $getOwnPropertyDescriptor$1(O, P);
2020-01-17 14:55:39 +08:00
} catch (error) { /* empty */ } }
2021-10-29 14:30:00 +08:00
if (hasOwnProperty_1(O, P)) { return createPropertyDescriptor(!functionCall(objectPropertyIsEnumerable.f, O, P), O[P]); }
2020-01-17 14:55:39 +08:00
};
var objectGetOwnPropertyDescriptor = {
2021-03-02 10:28:33 +08:00
f: f$6
2020-01-17 14:55:39 +08:00
};
2021-10-29 14:30:00 +08:00
var String$5 = global_1.String;
var TypeError$B = global_1.TypeError;
// `Assert: Type(argument) is Object`
var anObject = function (argument) {
if (isObject(argument)) { return argument; }
throw TypeError$B(String$5(argument) + ' is not an object');
2020-01-17 14:55:39 +08:00
};
2021-10-29 14:30:00 +08:00
var TypeError$A = global_1.TypeError;
// eslint-disable-next-line es/no-object-defineproperty -- safe
var $defineProperty$1 = Object.defineProperty;
2020-01-17 14:55:39 +08:00
// `Object.defineProperty` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-object.defineproperty
var f$5 = descriptors ? $defineProperty$1 : function defineProperty(O, P, Attributes) {
2020-01-17 14:55:39 +08:00
anObject(O);
2021-10-29 14:30:00 +08:00
P = toPropertyKey(P);
2020-01-17 14:55:39 +08:00
anObject(Attributes);
if (ie8DomDefine) { try {
return $defineProperty$1(O, P, Attributes);
2020-01-17 14:55:39 +08:00
} catch (error) { /* empty */ } }
2021-10-29 14:30:00 +08:00
if ('get' in Attributes || 'set' in Attributes) { throw TypeError$A('Accessors not supported'); }
2020-01-17 14:55:39 +08:00
if ('value' in Attributes) { O[P] = Attributes.value; }
return O;
};
var objectDefineProperty = {
2021-03-02 10:28:33 +08:00
f: f$5
2020-01-17 14:55:39 +08:00
};
var createNonEnumerableProperty = descriptors ? function (object, key, value) {
return objectDefineProperty.f(object, key, createPropertyDescriptor(1, value));
} : function (object, key, value) {
object[key] = value;
return object;
};
2021-10-29 14:30:00 +08:00
var functionToString$1 = functionUncurryThis(Function.toString);
2020-01-17 14:55:39 +08:00
// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
2021-10-29 14:30:00 +08:00
if (!isCallable(sharedStore.inspectSource)) {
2020-01-17 14:55:39 +08:00
sharedStore.inspectSource = function (it) {
2021-10-29 14:30:00 +08:00
return functionToString$1(it);
2020-01-17 14:55:39 +08:00
};
}
var inspectSource = sharedStore.inspectSource;
2021-10-29 14:30:00 +08:00
var WeakMap$4 = global_1.WeakMap;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var nativeWeakMap = isCallable(WeakMap$4) && /native code/.test(inspectSource(WeakMap$4));
2020-01-17 14:55:39 +08:00
2021-03-02 10:28:33 +08:00
var keys$3 = shared('keys');
2020-01-17 14:55:39 +08:00
var sharedKey = function (key) {
2021-03-02 10:28:33 +08:00
return keys$3[key] || (keys$3[key] = uid(key));
2020-01-17 14:55:39 +08:00
};
2021-03-02 10:28:33 +08:00
var hiddenKeys$1 = {};
2020-01-17 14:55:39 +08:00
var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
2021-10-29 14:30:00 +08:00
var TypeError$z = global_1.TypeError;
var WeakMap$3 = global_1.WeakMap;
2021-03-02 10:28:33 +08:00
var set$3, get$2, has;
2020-01-17 14:55:39 +08:00
var enforce = function (it) {
2021-03-02 10:28:33 +08:00
return has(it) ? get$2(it) : set$3(it, {});
2020-01-17 14:55:39 +08:00
};
var getterFor = function (TYPE) {
return function (it) {
var state;
2021-03-02 10:28:33 +08:00
if (!isObject(it) || (state = get$2(it)).type !== TYPE) {
2021-10-29 14:30:00 +08:00
throw TypeError$z('Incompatible receiver, ' + TYPE + ' required');
2020-01-17 14:55:39 +08:00
} return state;
};
};
if (nativeWeakMap || sharedStore.state) {
2021-10-29 14:30:00 +08:00
var store$2 = sharedStore.state || (sharedStore.state = new WeakMap$3());
var wmget = functionUncurryThis(store$2.get);
var wmhas = functionUncurryThis(store$2.has);
var wmset = functionUncurryThis(store$2.set);
2021-03-02 10:28:33 +08:00
set$3 = function (it, metadata) {
2021-10-29 14:30:00 +08:00
if (wmhas(store$2, it)) { throw new TypeError$z(OBJECT_ALREADY_INITIALIZED); }
2021-02-19 17:33:10 +08:00
metadata.facade = it;
2021-10-29 14:30:00 +08:00
wmset(store$2, it, metadata);
2020-01-17 14:55:39 +08:00
return metadata;
};
2021-03-02 10:28:33 +08:00
get$2 = function (it) {
2021-10-29 14:30:00 +08:00
return wmget(store$2, it) || {};
2020-01-17 14:55:39 +08:00
};
2021-03-02 10:28:33 +08:00
has = function (it) {
2021-10-29 14:30:00 +08:00
return wmhas(store$2, it);
2020-01-17 14:55:39 +08:00
};
} else {
var STATE = sharedKey('state');
2021-03-02 10:28:33 +08:00
hiddenKeys$1[STATE] = true;
set$3 = function (it, metadata) {
2021-10-29 14:30:00 +08:00
if (hasOwnProperty_1(it, STATE)) { throw new TypeError$z(OBJECT_ALREADY_INITIALIZED); }
2021-02-19 17:33:10 +08:00
metadata.facade = it;
2020-01-17 14:55:39 +08:00
createNonEnumerableProperty(it, STATE, metadata);
return metadata;
};
2021-03-02 10:28:33 +08:00
get$2 = function (it) {
2021-10-29 14:30:00 +08:00
return hasOwnProperty_1(it, STATE) ? it[STATE] : {};
2020-01-17 14:55:39 +08:00
};
2021-03-02 10:28:33 +08:00
has = function (it) {
2021-10-29 14:30:00 +08:00
return hasOwnProperty_1(it, STATE);
2020-01-17 14:55:39 +08:00
};
}
var internalState = {
2021-03-02 10:28:33 +08:00
set: set$3,
get: get$2,
has: has,
2020-01-17 14:55:39 +08:00
enforce: enforce,
getterFor: getterFor
};
2021-10-29 14:30:00 +08:00
var FunctionPrototype$3 = Function.prototype;
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
var getDescriptor = descriptors && Object.getOwnPropertyDescriptor;
var EXISTS = hasOwnProperty_1(FunctionPrototype$3, 'name');
// additional protection from minified / mangled / dropped function names
var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
var CONFIGURABLE = EXISTS && (!descriptors || (descriptors && getDescriptor(FunctionPrototype$3, 'name').configurable));
var functionName = {
EXISTS: EXISTS,
PROPER: PROPER,
CONFIGURABLE: CONFIGURABLE
};
2020-01-17 14:55:39 +08:00
var redefine = createCommonjsModule(function (module) {
2021-10-29 14:30:00 +08:00
var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
2020-01-17 14:55:39 +08:00
var getInternalState = internalState.get;
var enforceInternalState = internalState.enforce;
var TEMPLATE = String(String).split('String');
(module.exports = function (O, key, value, options) {
var unsafe = options ? !!options.unsafe : false;
var simple = options ? !!options.enumerable : false;
var noTargetGet = options ? !!options.noTargetGet : false;
2021-10-29 14:30:00 +08:00
var name = options && options.name !== undefined ? options.name : key;
2021-02-19 17:33:10 +08:00
var state;
2021-10-29 14:30:00 +08:00
if (isCallable(value)) {
if (String(name).slice(0, 7) === 'Symbol(') {
name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
}
if (!hasOwnProperty_1(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
createNonEnumerableProperty(value, 'name', name);
2021-02-19 17:33:10 +08:00
}
state = enforceInternalState(value);
if (!state.source) {
2021-10-29 14:30:00 +08:00
state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
2021-02-19 17:33:10 +08:00
}
2020-01-17 14:55:39 +08:00
}
if (O === global_1) {
if (simple) { O[key] = value; }
else { setGlobal(key, value); }
return;
} else if (!unsafe) {
delete O[key];
} else if (!noTargetGet && O[key]) {
simple = true;
}
if (simple) { O[key] = value; }
else { createNonEnumerableProperty(O, key, value); }
// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
})(Function.prototype, 'toString', function toString() {
2021-10-29 14:30:00 +08:00
return isCallable(this) && getInternalState(this).source || inspectSource(this);
2020-01-17 14:55:39 +08:00
});
});
2021-10-29 14:30:00 +08:00
var ceil$2 = Math.ceil;
var floor$a = Math.floor;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
// `ToIntegerOrInfinity` abstract operation
// https://tc39.es/ecma262/#sec-tointegerorinfinity
var toIntegerOrInfinity = function (argument) {
var number = +argument;
// eslint-disable-next-line no-self-compare -- safe
return number !== number || number === 0 ? 0 : (number > 0 ? floor$a : ceil$2)(number);
2020-01-17 14:55:39 +08:00
};
2021-10-29 14:30:00 +08:00
var max$6 = Math.max;
var min$a = Math.min;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
// Helper for a popular repeating case of the spec:
// Let integer be ? ToInteger(index).
// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
var toAbsoluteIndex = function (index, length) {
var integer = toIntegerOrInfinity(index);
return integer < 0 ? max$6(integer + length, 0) : min$a(integer, length);
2020-01-17 14:55:39 +08:00
};
2021-03-02 10:28:33 +08:00
var min$9 = Math.min;
2020-01-17 14:55:39 +08:00
// `ToLength` abstract operation
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-tolength
2020-01-17 14:55:39 +08:00
var toLength = function (argument) {
2021-10-29 14:30:00 +08:00
return argument > 0 ? min$9(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
2020-01-17 14:55:39 +08:00
};
2021-10-29 14:30:00 +08:00
// `LengthOfArrayLike` abstract operation
// https://tc39.es/ecma262/#sec-lengthofarraylike
var lengthOfArrayLike = function (obj) {
return toLength(obj.length);
2020-01-17 14:55:39 +08:00
};
// `Array.prototype.{ indexOf, includes }` methods implementation
2021-03-02 10:28:33 +08:00
var createMethod$8 = function (IS_INCLUDES) {
2020-01-17 14:55:39 +08:00
return function ($this, el, fromIndex) {
var O = toIndexedObject($this);
2021-10-29 14:30:00 +08:00
var length = lengthOfArrayLike(O);
2020-01-17 14:55:39 +08:00
var index = toAbsoluteIndex(fromIndex, length);
var value;
// Array#includes uses SameValueZero equality algorithm
2021-02-19 17:33:10 +08:00
// eslint-disable-next-line no-self-compare -- NaN check
2020-01-17 14:55:39 +08:00
if (IS_INCLUDES && el != el) { while (length > index) {
value = O[index++];
2021-02-19 17:33:10 +08:00
// eslint-disable-next-line no-self-compare -- NaN check
2020-01-17 14:55:39 +08:00
if (value != value) { return true; }
// Array#indexOf ignores holes, Array#includes - not
} } else { for (;length > index; index++) {
if ((IS_INCLUDES || index in O) && O[index] === el) { return IS_INCLUDES || index || 0; }
} } return !IS_INCLUDES && -1;
};
};
var arrayIncludes = {
// `Array.prototype.includes` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-array.prototype.includes
2021-03-02 10:28:33 +08:00
includes: createMethod$8(true),
2020-01-17 14:55:39 +08:00
// `Array.prototype.indexOf` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-array.prototype.indexof
2021-03-02 10:28:33 +08:00
indexOf: createMethod$8(false)
2020-01-17 14:55:39 +08:00
};
2021-10-29 14:30:00 +08:00
var indexOf$2 = arrayIncludes.indexOf;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var push$j = functionUncurryThis([].push);
2020-01-17 14:55:39 +08:00
var objectKeysInternal = function (object, names) {
var O = toIndexedObject(object);
var i = 0;
var result = [];
var key;
2021-10-29 14:30:00 +08:00
for (key in O) { !hasOwnProperty_1(hiddenKeys$1, key) && hasOwnProperty_1(O, key) && push$j(result, key); }
2020-01-17 14:55:39 +08:00
// Don't enum bug & hidden keys
2021-10-29 14:30:00 +08:00
while (names.length > i) { if (hasOwnProperty_1(O, key = names[i++])) {
~indexOf$2(result, key) || push$j(result, key);
2020-01-17 14:55:39 +08:00
} }
return result;
};
// IE8- don't enum bug keys
var enumBugKeys = [
'constructor',
'hasOwnProperty',
'isPrototypeOf',
'propertyIsEnumerable',
'toLocaleString',
'toString',
'valueOf'
];
2021-03-02 10:28:33 +08:00
var hiddenKeys = enumBugKeys.concat('length', 'prototype');
2020-01-17 14:55:39 +08:00
// `Object.getOwnPropertyNames` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-object.getownpropertynames
// eslint-disable-next-line es/no-object-getownpropertynames -- safe
2021-03-02 10:28:33 +08:00
var f$4 = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
return objectKeysInternal(O, hiddenKeys);
2020-01-17 14:55:39 +08:00
};
var objectGetOwnPropertyNames = {
2021-03-02 10:28:33 +08:00
f: f$4
2020-01-17 14:55:39 +08:00
};
// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
2021-03-02 10:28:33 +08:00
var f$3 = Object.getOwnPropertySymbols;
2020-01-17 14:55:39 +08:00
var objectGetOwnPropertySymbols = {
2021-03-02 10:28:33 +08:00
f: f$3
2020-01-17 14:55:39 +08:00
};
2021-10-29 14:30:00 +08:00
var concat$4 = functionUncurryThis([].concat);
2020-01-17 14:55:39 +08:00
// all object keys, includes non-enumerable and symbols
var ownKeys = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
var keys = objectGetOwnPropertyNames.f(anObject(it));
var getOwnPropertySymbols = objectGetOwnPropertySymbols.f;
2021-10-29 14:30:00 +08:00
return getOwnPropertySymbols ? concat$4(keys, getOwnPropertySymbols(it)) : keys;
2020-01-17 14:55:39 +08:00
};
var copyConstructorProperties = function (target, source) {
var keys = ownKeys(source);
var defineProperty = objectDefineProperty.f;
var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
for (var i = 0; i < keys.length; i++) {
var key = keys[i];
2021-10-29 14:30:00 +08:00
if (!hasOwnProperty_1(target, key)) { defineProperty(target, key, getOwnPropertyDescriptor(source, key)); }
2020-01-17 14:55:39 +08:00
}
};
var replacement = /#|\.prototype\./;
var isForced = function (feature, detection) {
var value = data[normalize(feature)];
return value == POLYFILL ? true
: value == NATIVE ? false
2021-10-29 14:30:00 +08:00
: isCallable(detection) ? fails(detection)
2020-01-17 14:55:39 +08:00
: !!detection;
};
var normalize = isForced.normalize = function (string) {
return String(string).replace(replacement, '.').toLowerCase();
};
var data = isForced.data = {};
var NATIVE = isForced.NATIVE = 'N';
var POLYFILL = isForced.POLYFILL = 'P';
var isForced_1 = isForced;
2021-03-02 10:28:33 +08:00
var getOwnPropertyDescriptor$7 = objectGetOwnPropertyDescriptor.f;
2020-01-17 14:55:39 +08:00
/*
options.target - name of the target object
options.global - target is the global object
options.stat - export as static methods of target
options.proto - export as prototype methods of target
options.real - real prototype method for the `pure` version
options.forced - export even if the native feature is available
options.bind - bind methods to the target, required for the `pure` version
options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
options.unsafe - use the simple assignment of property instead of delete + defineProperty
options.sham - add a flag to not completely full polyfills
options.enumerable - export as enumerable property
options.noTargetGet - prevent calling a getter on target
2021-10-29 14:30:00 +08:00
options.name - the .name of the function if it does not match the key
2020-01-17 14:55:39 +08:00
*/
var _export = function (options, source) {
var TARGET = options.target;
var GLOBAL = options.global;
var STATIC = options.stat;
var FORCED, target, key, targetProperty, sourceProperty, descriptor;
if (GLOBAL) {
target = global_1;
} else if (STATIC) {
target = global_1[TARGET] || setGlobal(TARGET, {});
} else {
target = (global_1[TARGET] || {}).prototype;
}
if (target) { for (key in source) {
sourceProperty = source[key];
if (options.noTargetGet) {
2021-03-02 10:28:33 +08:00
descriptor = getOwnPropertyDescriptor$7(target, key);
2020-01-17 14:55:39 +08:00
targetProperty = descriptor && descriptor.value;
} else { targetProperty = target[key]; }
FORCED = isForced_1(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
// contained in target
if (!FORCED && targetProperty !== undefined) {
2021-10-29 14:30:00 +08:00
if (typeof sourceProperty == typeof targetProperty) { continue; }
2020-01-17 14:55:39 +08:00
copyConstructorProperties(sourceProperty, targetProperty);
}
// add a flag to not completely full polyfills
if (options.sham || (targetProperty && targetProperty.sham)) {
createNonEnumerableProperty(sourceProperty, 'sham', true);
}
// extend global
redefine(target, key, sourceProperty, options);
} }
};
2021-10-29 14:30:00 +08:00
var FunctionPrototype$2 = Function.prototype;
var apply = FunctionPrototype$2.apply;
var bind$2 = FunctionPrototype$2.bind;
var call = FunctionPrototype$2.call;
2021-03-02 10:28:33 +08:00
2021-10-29 14:30:00 +08:00
// eslint-disable-next-line es/no-reflect -- safe
var functionApply = typeof Reflect == 'object' && Reflect.apply || (bind$2 ? call.bind(apply) : function () {
return call.apply(apply, arguments);
});
2021-03-02 10:28:33 +08:00
2021-10-29 14:30:00 +08:00
// `IsArray` abstract operation
// https://tc39.es/ecma262/#sec-isarray
// eslint-disable-next-line es/no-array-isarray -- safe
var isArray = Array.isArray || function isArray(argument) {
return classofRaw(argument) == 'Array';
};
2021-03-02 10:28:33 +08:00
2021-10-29 14:30:00 +08:00
var TO_STRING_TAG$8 = wellKnownSymbol('toStringTag');
var test$2 = {};
2021-03-02 10:28:33 +08:00
2021-10-29 14:30:00 +08:00
test$2[TO_STRING_TAG$8] = 'z';
2021-10-29 14:30:00 +08:00
var toStringTagSupport = String(test$2) === '[object z]';
2021-10-29 14:30:00 +08:00
var TO_STRING_TAG$7 = wellKnownSymbol('toStringTag');
var Object$4 = global_1.Object;
2021-10-29 14:30:00 +08:00
// ES3 wrong here
var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
// fallback for IE11 Script Access Denied error
var tryGet = function (it, key) {
try {
return it[key];
} catch (error) { /* empty */ }
};
2021-10-29 14:30:00 +08:00
// getting tag from ES6+ `Object.prototype.toString`
var classof = toStringTagSupport ? classofRaw : function (it) {
var O, tag, result;
return it === undefined ? 'Undefined' : it === null ? 'Null'
// @@toStringTag case
: typeof (tag = tryGet(O = Object$4(it), TO_STRING_TAG$7)) == 'string' ? tag
// builtinTag case
: CORRECT_ARGUMENTS ? classofRaw(O)
// ES3 arguments fallback
: (result = classofRaw(O)) == 'Object' && isCallable(O.callee) ? 'Arguments' : result;
};
2021-10-29 14:30:00 +08:00
var String$4 = global_1.String;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var toString_1 = function (argument) {
if (classof(argument) === 'Symbol') { throw TypeError('Cannot convert a Symbol value to a string'); }
return String$4(argument);
2020-01-17 14:55:39 +08:00
};
// `Object.keys` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-object.keys
// eslint-disable-next-line es/no-object-keys -- safe
2020-01-17 14:55:39 +08:00
var objectKeys = Object.keys || function keys(O) {
return objectKeysInternal(O, enumBugKeys);
};
// `Object.defineProperties` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-object.defineproperties
// eslint-disable-next-line es/no-object-defineproperties -- safe
2020-01-17 14:55:39 +08:00
var objectDefineProperties = descriptors ? Object.defineProperties : function defineProperties(O, Properties) {
anObject(O);
2021-10-29 14:30:00 +08:00
var props = toIndexedObject(Properties);
2020-01-17 14:55:39 +08:00
var keys = objectKeys(Properties);
var length = keys.length;
var index = 0;
var key;
2021-10-29 14:30:00 +08:00
while (length > index) { objectDefineProperty.f(O, key = keys[index++], props[key]); }
2020-01-17 14:55:39 +08:00
return O;
};
var html = getBuiltIn('document', 'documentElement');
2021-10-29 14:30:00 +08:00
/* global ActiveXObject -- old IE, WSH */
2020-01-17 14:55:39 +08:00
var GT = '>';
var LT = '<';
2021-03-02 10:28:33 +08:00
var PROTOTYPE$2 = 'prototype';
2020-01-17 14:55:39 +08:00
var SCRIPT = 'script';
2021-03-02 10:28:33 +08:00
var IE_PROTO$1 = sharedKey('IE_PROTO');
2020-01-17 14:55:39 +08:00
var EmptyConstructor = function () { /* empty */ };
var scriptTag = function (content) {
return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
};
// Create object with fake `null` prototype: use ActiveX Object with cleared prototype
var NullProtoObjectViaActiveX = function (activeXDocument) {
activeXDocument.write(scriptTag(''));
activeXDocument.close();
var temp = activeXDocument.parentWindow.Object;
activeXDocument = null; // avoid memory leak
return temp;
};
// Create object with fake `null` prototype: use iframe Object with cleared prototype
var NullProtoObjectViaIFrame = function () {
// Thrash, waste and sodomy: IE GC bug
var iframe = documentCreateElement('iframe');
var JS = 'java' + SCRIPT + ':';
var iframeDocument;
iframe.style.display = 'none';
html.appendChild(iframe);
// https://github.com/zloirock/core-js/issues/475
iframe.src = String(JS);
iframeDocument = iframe.contentWindow.document;
iframeDocument.open();
iframeDocument.write(scriptTag('document.F=Object'));
iframeDocument.close();
return iframeDocument.F;
};
// Check for document.domain and active x support
// No need to use active x approach when document.domain is not set
// see https://github.com/es-shims/es5-shim/issues/150
// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
// avoid IE GC bug
var activeXDocument;
var NullProtoObject = function () {
try {
2021-10-29 14:30:00 +08:00
activeXDocument = new ActiveXObject('htmlfile');
2020-01-17 14:55:39 +08:00
} catch (error) { /* ignore */ }
2021-10-29 14:30:00 +08:00
NullProtoObject = typeof document != 'undefined'
? document.domain && activeXDocument
? NullProtoObjectViaActiveX(activeXDocument) // old IE
: NullProtoObjectViaIFrame()
: NullProtoObjectViaActiveX(activeXDocument); // WSH
2020-01-17 14:55:39 +08:00
var length = enumBugKeys.length;
2021-03-02 10:28:33 +08:00
while (length--) { delete NullProtoObject[PROTOTYPE$2][enumBugKeys[length]]; }
2020-01-17 14:55:39 +08:00
return NullProtoObject();
};
2021-03-02 10:28:33 +08:00
hiddenKeys$1[IE_PROTO$1] = true;
2020-01-17 14:55:39 +08:00
// `Object.create` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-object.create
2020-01-17 14:55:39 +08:00
var objectCreate = Object.create || function create(O, Properties) {
var result;
if (O !== null) {
2021-03-02 10:28:33 +08:00
EmptyConstructor[PROTOTYPE$2] = anObject(O);
2020-01-17 14:55:39 +08:00
result = new EmptyConstructor();
2021-03-02 10:28:33 +08:00
EmptyConstructor[PROTOTYPE$2] = null;
2020-01-17 14:55:39 +08:00
// add "__proto__" for Object.getPrototypeOf polyfill
2021-03-02 10:28:33 +08:00
result[IE_PROTO$1] = O;
2020-01-17 14:55:39 +08:00
} else { result = NullProtoObject(); }
return Properties === undefined ? result : objectDefineProperties(result, Properties);
};
2021-10-29 14:30:00 +08:00
var arraySlice$1 = functionUncurryThis([].slice);
/* eslint-disable es/no-object-getownpropertynames -- safe */
2021-10-29 14:30:00 +08:00
var $getOwnPropertyNames$1 = objectGetOwnPropertyNames.f;
2020-01-17 14:55:39 +08:00
var windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames
? Object.getOwnPropertyNames(window) : [];
var getWindowNames = function (it) {
try {
return $getOwnPropertyNames$1(it);
2020-01-17 14:55:39 +08:00
} catch (error) {
2021-10-29 14:30:00 +08:00
return arraySlice$1(windowNames);
2020-01-17 14:55:39 +08:00
}
};
// fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window
2021-03-02 10:28:33 +08:00
var f$2 = function getOwnPropertyNames(it) {
2021-10-29 14:30:00 +08:00
return windowNames && classofRaw(it) == 'Window'
2020-01-17 14:55:39 +08:00
? getWindowNames(it)
: $getOwnPropertyNames$1(toIndexedObject(it));
2020-01-17 14:55:39 +08:00
};
var objectGetOwnPropertyNamesExternal = {
2021-03-02 10:28:33 +08:00
f: f$2
2020-01-17 14:55:39 +08:00
};
2021-03-02 10:28:33 +08:00
var f$1 = wellKnownSymbol;
2020-01-17 14:55:39 +08:00
var wellKnownSymbolWrapped = {
2021-03-02 10:28:33 +08:00
f: f$1
2020-01-17 14:55:39 +08:00
};
2021-10-29 14:30:00 +08:00
var path = global_1;
var defineProperty$e = objectDefineProperty.f;
2020-01-17 14:55:39 +08:00
var defineWellKnownSymbol = function (NAME) {
var Symbol = path.Symbol || (path.Symbol = {});
2021-10-29 14:30:00 +08:00
if (!hasOwnProperty_1(Symbol, NAME)) { defineProperty$e(Symbol, NAME, {
2020-01-17 14:55:39 +08:00
value: wellKnownSymbolWrapped.f(NAME)
}); }
};
2021-10-29 14:30:00 +08:00
var defineProperty$d = objectDefineProperty.f;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var TO_STRING_TAG$6 = wellKnownSymbol('toStringTag');
2020-01-17 14:55:39 +08:00
var setToStringTag = function (it, TAG, STATIC) {
2021-10-29 14:30:00 +08:00
if (it && !hasOwnProperty_1(it = STATIC ? it : it.prototype, TO_STRING_TAG$6)) {
defineProperty$d(it, TO_STRING_TAG$6, { configurable: true, value: TAG });
2020-01-17 14:55:39 +08:00
}
};
2021-10-29 14:30:00 +08:00
var bind$1 = functionUncurryThis(functionUncurryThis.bind);
2020-01-17 14:55:39 +08:00
// optional / simple context binding
2021-10-29 14:30:00 +08:00
var functionBindContext = function (fn, that) {
aCallable(fn);
return that === undefined ? fn : bind$1 ? bind$1(fn, that) : function (/* ...args */) {
2020-01-17 14:55:39 +08:00
return fn.apply(that, arguments);
};
};
2021-10-29 14:30:00 +08:00
var noop = function () { /* empty */ };
var empty = [];
var construct$1 = getBuiltIn('Reflect', 'construct');
var constructorRegExp = /^\s*(?:class|function)\b/;
var exec$9 = functionUncurryThis(constructorRegExp.exec);
var INCORRECT_TO_STRING = !constructorRegExp.exec(noop);
var isConstructorModern = function (argument) {
if (!isCallable(argument)) { return false; }
try {
construct$1(noop, empty, argument);
return true;
} catch (error) {
return false;
}
};
var isConstructorLegacy = function (argument) {
if (!isCallable(argument)) { return false; }
switch (classof(argument)) {
case 'AsyncFunction':
case 'GeneratorFunction':
case 'AsyncGeneratorFunction': return false;
// we can't check .prototype since constructors produced by .bind haven't it
} return INCORRECT_TO_STRING || !!exec$9(constructorRegExp, inspectSource(argument));
};
// `IsConstructor` abstract operation
// https://tc39.es/ecma262/#sec-isconstructor
var isConstructor = !construct$1 || fails(function () {
var called;
return isConstructorModern(isConstructorModern.call)
|| !isConstructorModern(Object)
|| !isConstructorModern(function () { called = true; })
|| called;
}) ? isConstructorLegacy : isConstructorModern;
2021-03-02 10:28:33 +08:00
var SPECIES$6 = wellKnownSymbol('species');
2021-10-29 14:30:00 +08:00
var Array$a = global_1.Array;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
// a part of `ArraySpeciesCreate` abstract operation
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-arrayspeciescreate
2021-10-29 14:30:00 +08:00
var arraySpeciesConstructor = function (originalArray) {
2020-01-17 14:55:39 +08:00
var C;
if (isArray(originalArray)) {
C = originalArray.constructor;
// cross-realm fallback
2021-10-29 14:30:00 +08:00
if (isConstructor(C) && (C === Array$a || isArray(C.prototype))) { C = undefined; }
2020-01-17 14:55:39 +08:00
else if (isObject(C)) {
2021-03-02 10:28:33 +08:00
C = C[SPECIES$6];
2020-01-17 14:55:39 +08:00
if (C === null) { C = undefined; }
}
2021-10-29 14:30:00 +08:00
} return C === undefined ? Array$a : C;
2020-01-17 14:55:39 +08:00
};
2021-10-29 14:30:00 +08:00
// `ArraySpeciesCreate` abstract operation
// https://tc39.es/ecma262/#sec-arrayspeciescreate
var arraySpeciesCreate = function (originalArray, length) {
return new (arraySpeciesConstructor(originalArray))(length === 0 ? 0 : length);
};
var push$i = functionUncurryThis([].push);
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
// `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterReject }` methods implementation
2021-03-02 10:28:33 +08:00
var createMethod$7 = function (TYPE) {
2020-01-17 14:55:39 +08:00
var IS_MAP = TYPE == 1;
var IS_FILTER = TYPE == 2;
var IS_SOME = TYPE == 3;
var IS_EVERY = TYPE == 4;
var IS_FIND_INDEX = TYPE == 6;
2021-10-29 14:30:00 +08:00
var IS_FILTER_REJECT = TYPE == 7;
2020-01-17 14:55:39 +08:00
var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;
return function ($this, callbackfn, that, specificCreate) {
var O = toObject($this);
var self = indexedObject(O);
2021-10-29 14:30:00 +08:00
var boundFunction = functionBindContext(callbackfn, that);
var length = lengthOfArrayLike(self);
2020-01-17 14:55:39 +08:00
var index = 0;
var create = specificCreate || arraySpeciesCreate;
2021-10-29 14:30:00 +08:00
var target = IS_MAP ? create($this, length) : IS_FILTER || IS_FILTER_REJECT ? create($this, 0) : undefined;
2020-01-17 14:55:39 +08:00
var value, result;
for (;length > index; index++) { if (NO_HOLES || index in self) {
value = self[index];
result = boundFunction(value, index, O);
if (TYPE) {
if (IS_MAP) { target[index] = result; } // map
else if (result) { switch (TYPE) {
case 3: return true; // some
case 5: return value; // find
case 6: return index; // findIndex
2021-10-29 14:30:00 +08:00
case 2: push$i(target, value); // filter
2021-02-19 17:33:10 +08:00
} } else { switch (TYPE) {
case 4: return false; // every
2021-10-29 14:30:00 +08:00
case 7: push$i(target, value); // filterReject
2021-02-19 17:33:10 +08:00
} }
2020-01-17 14:55:39 +08:00
}
} }
return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;
};
};
var arrayIteration = {
// `Array.prototype.forEach` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-array.prototype.foreach
2021-03-02 10:28:33 +08:00
forEach: createMethod$7(0),
2020-01-17 14:55:39 +08:00
// `Array.prototype.map` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-array.prototype.map
2021-03-02 10:28:33 +08:00
map: createMethod$7(1),
2020-01-17 14:55:39 +08:00
// `Array.prototype.filter` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-array.prototype.filter
2021-03-02 10:28:33 +08:00
filter: createMethod$7(2),
2020-01-17 14:55:39 +08:00
// `Array.prototype.some` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-array.prototype.some
2021-03-02 10:28:33 +08:00
some: createMethod$7(3),
2020-01-17 14:55:39 +08:00
// `Array.prototype.every` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-array.prototype.every
2021-03-02 10:28:33 +08:00
every: createMethod$7(4),
2020-01-17 14:55:39 +08:00
// `Array.prototype.find` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-array.prototype.find
2021-03-02 10:28:33 +08:00
find: createMethod$7(5),
2020-01-17 14:55:39 +08:00
// `Array.prototype.findIndex` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-array.prototype.findIndex
2021-03-02 10:28:33 +08:00
findIndex: createMethod$7(6),
2021-10-29 14:30:00 +08:00
// `Array.prototype.filterReject` method
2021-02-19 17:33:10 +08:00
// https://github.com/tc39/proposal-array-filtering
2021-10-29 14:30:00 +08:00
filterReject: createMethod$7(7)
2020-01-17 14:55:39 +08:00
};
2021-03-02 10:28:33 +08:00
var $forEach$3 = arrayIteration.forEach;
2020-01-17 14:55:39 +08:00
var HIDDEN = sharedKey('hidden');
var SYMBOL = 'Symbol';
var PROTOTYPE$1 = 'prototype';
2021-03-02 10:28:33 +08:00
var TO_PRIMITIVE$1 = wellKnownSymbol('toPrimitive');
2021-10-29 14:30:00 +08:00
var setInternalState$h = internalState.set;
var getInternalState$g = internalState.getterFor(SYMBOL);
var ObjectPrototype$4 = Object[PROTOTYPE$1];
2020-01-17 14:55:39 +08:00
var $Symbol = global_1.Symbol;
2021-10-29 14:30:00 +08:00
var SymbolPrototype$1 = $Symbol && $Symbol[PROTOTYPE$1];
var TypeError$y = global_1.TypeError;
var QObject = global_1.QObject;
2021-03-02 10:28:33 +08:00
var $stringify$1 = getBuiltIn('JSON', 'stringify');
2020-01-17 14:55:39 +08:00
var nativeGetOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
2021-03-02 10:28:33 +08:00
var nativeDefineProperty = objectDefineProperty.f;
var nativeGetOwnPropertyNames = objectGetOwnPropertyNamesExternal.f;
2021-03-02 10:28:33 +08:00
var nativePropertyIsEnumerable = objectPropertyIsEnumerable.f;
2021-10-29 14:30:00 +08:00
var push$h = functionUncurryThis([].push);
2020-01-17 14:55:39 +08:00
var AllSymbols = shared('symbols');
var ObjectPrototypeSymbols = shared('op-symbols');
var StringToSymbolRegistry = shared('string-to-symbol-registry');
var SymbolToStringRegistry = shared('symbol-to-string-registry');
2021-03-02 10:28:33 +08:00
var WellKnownSymbolsStore = shared('wks');
2021-10-29 14:30:00 +08:00
2020-01-17 14:55:39 +08:00
// Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173
var USE_SETTER = !QObject || !QObject[PROTOTYPE$1] || !QObject[PROTOTYPE$1].findChild;
// fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687
var setSymbolDescriptor = descriptors && fails(function () {
2021-03-02 10:28:33 +08:00
return objectCreate(nativeDefineProperty({}, 'a', {
get: function () { return nativeDefineProperty(this, 'a', { value: 7 }).a; }
2020-01-17 14:55:39 +08:00
})).a != 7;
}) ? function (O, P, Attributes) {
2021-10-29 14:30:00 +08:00
var ObjectPrototypeDescriptor = nativeGetOwnPropertyDescriptor$1(ObjectPrototype$4, P);
if (ObjectPrototypeDescriptor) { delete ObjectPrototype$4[P]; }
2021-03-02 10:28:33 +08:00
nativeDefineProperty(O, P, Attributes);
2021-10-29 14:30:00 +08:00
if (ObjectPrototypeDescriptor && O !== ObjectPrototype$4) {
nativeDefineProperty(ObjectPrototype$4, P, ObjectPrototypeDescriptor);
2020-01-17 14:55:39 +08:00
}
2021-03-02 10:28:33 +08:00
} : nativeDefineProperty;
2020-01-17 14:55:39 +08:00
2021-03-02 10:28:33 +08:00
var wrap$1 = function (tag, description) {
2021-10-29 14:30:00 +08:00
var symbol = AllSymbols[tag] = objectCreate(SymbolPrototype$1);
setInternalState$h(symbol, {
2020-01-17 14:55:39 +08:00
type: SYMBOL,
tag: tag,
description: description
});
if (!descriptors) { symbol.description = description; }
return symbol;
};
var $defineProperty = function defineProperty(O, P, Attributes) {
2021-10-29 14:30:00 +08:00
if (O === ObjectPrototype$4) { $defineProperty(ObjectPrototypeSymbols, P, Attributes); }
2020-01-17 14:55:39 +08:00
anObject(O);
2021-10-29 14:30:00 +08:00
var key = toPropertyKey(P);
2020-01-17 14:55:39 +08:00
anObject(Attributes);
2021-10-29 14:30:00 +08:00
if (hasOwnProperty_1(AllSymbols, key)) {
2020-01-17 14:55:39 +08:00
if (!Attributes.enumerable) {
2021-10-29 14:30:00 +08:00
if (!hasOwnProperty_1(O, HIDDEN)) { nativeDefineProperty(O, HIDDEN, createPropertyDescriptor(1, {})); }
2020-01-17 14:55:39 +08:00
O[HIDDEN][key] = true;
} else {
2021-10-29 14:30:00 +08:00
if (hasOwnProperty_1(O, HIDDEN) && O[HIDDEN][key]) { O[HIDDEN][key] = false; }
2020-01-17 14:55:39 +08:00
Attributes = objectCreate(Attributes, { enumerable: createPropertyDescriptor(0, false) });
} return setSymbolDescriptor(O, key, Attributes);
2021-03-02 10:28:33 +08:00
} return nativeDefineProperty(O, key, Attributes);
2020-01-17 14:55:39 +08:00
};
var $defineProperties = function defineProperties(O, Properties) {
anObject(O);
var properties = toIndexedObject(Properties);
var keys = objectKeys(properties).concat($getOwnPropertySymbols(properties));
2021-03-02 10:28:33 +08:00
$forEach$3(keys, function (key) {
2021-10-29 14:30:00 +08:00
if (!descriptors || functionCall($propertyIsEnumerable$1, properties, key)) { $defineProperty(O, key, properties[key]); }
2020-01-17 14:55:39 +08:00
});
return O;
};
var $create = function create(O, Properties) {
return Properties === undefined ? objectCreate(O) : $defineProperties(objectCreate(O), Properties);
};
2021-10-29 14:30:00 +08:00
var $propertyIsEnumerable$1 = function propertyIsEnumerable(V) {
var P = toPropertyKey(V);
var enumerable = functionCall(nativePropertyIsEnumerable, this, P);
if (this === ObjectPrototype$4 && hasOwnProperty_1(AllSymbols, P) && !hasOwnProperty_1(ObjectPrototypeSymbols, P)) { return false; }
return enumerable || !hasOwnProperty_1(this, P) || !hasOwnProperty_1(AllSymbols, P) || hasOwnProperty_1(this, HIDDEN) && this[HIDDEN][P]
? enumerable : true;
2020-01-17 14:55:39 +08:00
};
var $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(O, P) {
var it = toIndexedObject(O);
2021-10-29 14:30:00 +08:00
var key = toPropertyKey(P);
if (it === ObjectPrototype$4 && hasOwnProperty_1(AllSymbols, key) && !hasOwnProperty_1(ObjectPrototypeSymbols, key)) { return; }
2020-01-17 14:55:39 +08:00
var descriptor = nativeGetOwnPropertyDescriptor$1(it, key);
2021-10-29 14:30:00 +08:00
if (descriptor && hasOwnProperty_1(AllSymbols, key) && !(hasOwnProperty_1(it, HIDDEN) && it[HIDDEN][key])) {
2020-01-17 14:55:39 +08:00
descriptor.enumerable = true;
}
return descriptor;
};
var $getOwnPropertyNames = function getOwnPropertyNames(O) {
var names = nativeGetOwnPropertyNames(toIndexedObject(O));
2020-01-17 14:55:39 +08:00
var result = [];
2021-03-02 10:28:33 +08:00
$forEach$3(names, function (key) {
2021-10-29 14:30:00 +08:00
if (!hasOwnProperty_1(AllSymbols, key) && !hasOwnProperty_1(hiddenKeys$1, key)) { push$h(result, key); }
2020-01-17 14:55:39 +08:00
});
return result;
};
var $getOwnPropertySymbols = function getOwnPropertySymbols(O) {
2021-10-29 14:30:00 +08:00
var IS_OBJECT_PROTOTYPE = O === ObjectPrototype$4;
var names = nativeGetOwnPropertyNames(IS_OBJECT_PROTOTYPE ? ObjectPrototypeSymbols : toIndexedObject(O));
2020-01-17 14:55:39 +08:00
var result = [];
2021-03-02 10:28:33 +08:00
$forEach$3(names, function (key) {
2021-10-29 14:30:00 +08:00
if (hasOwnProperty_1(AllSymbols, key) && (!IS_OBJECT_PROTOTYPE || hasOwnProperty_1(ObjectPrototype$4, key))) {
push$h(result, AllSymbols[key]);
2020-01-17 14:55:39 +08:00
}
});
return result;
};
// `Symbol` constructor
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-symbol-constructor
2020-01-17 14:55:39 +08:00
if (!nativeSymbol) {
$Symbol = function Symbol() {
2021-10-29 14:30:00 +08:00
if (objectIsPrototypeOf(SymbolPrototype$1, this)) { throw TypeError$y('Symbol is not a constructor'); }
var description = !arguments.length || arguments[0] === undefined ? undefined : toString_1(arguments[0]);
2020-01-17 14:55:39 +08:00
var tag = uid(description);
var setter = function (value) {
2021-10-29 14:30:00 +08:00
if (this === ObjectPrototype$4) { functionCall(setter, ObjectPrototypeSymbols, value); }
if (hasOwnProperty_1(this, HIDDEN) && hasOwnProperty_1(this[HIDDEN], tag)) { this[HIDDEN][tag] = false; }
2020-01-17 14:55:39 +08:00
setSymbolDescriptor(this, tag, createPropertyDescriptor(1, value));
};
2021-10-29 14:30:00 +08:00
if (descriptors && USE_SETTER) { setSymbolDescriptor(ObjectPrototype$4, tag, { configurable: true, set: setter }); }
2021-03-02 10:28:33 +08:00
return wrap$1(tag, description);
2020-01-17 14:55:39 +08:00
};
2021-10-29 14:30:00 +08:00
SymbolPrototype$1 = $Symbol[PROTOTYPE$1];
redefine(SymbolPrototype$1, 'toString', function toString() {
return getInternalState$g(this).tag;
2020-01-17 14:55:39 +08:00
});
redefine($Symbol, 'withoutSetter', function (description) {
2021-03-02 10:28:33 +08:00
return wrap$1(uid(description), description);
2020-01-17 14:55:39 +08:00
});
2021-10-29 14:30:00 +08:00
objectPropertyIsEnumerable.f = $propertyIsEnumerable$1;
2020-01-17 14:55:39 +08:00
objectDefineProperty.f = $defineProperty;
objectGetOwnPropertyDescriptor.f = $getOwnPropertyDescriptor;
objectGetOwnPropertyNames.f = objectGetOwnPropertyNamesExternal.f = $getOwnPropertyNames;
objectGetOwnPropertySymbols.f = $getOwnPropertySymbols;
wellKnownSymbolWrapped.f = function (name) {
2021-03-02 10:28:33 +08:00
return wrap$1(wellKnownSymbol(name), name);
2020-01-17 14:55:39 +08:00
};
if (descriptors) {
// https://github.com/tc39/proposal-Symbol-description
2021-10-29 14:30:00 +08:00
nativeDefineProperty(SymbolPrototype$1, 'description', {
2020-01-17 14:55:39 +08:00
configurable: true,
get: function description() {
2021-10-29 14:30:00 +08:00
return getInternalState$g(this).description;
2020-01-17 14:55:39 +08:00
}
});
{
2021-10-29 14:30:00 +08:00
redefine(ObjectPrototype$4, 'propertyIsEnumerable', $propertyIsEnumerable$1, { unsafe: true });
2020-01-17 14:55:39 +08:00
}
}
}
_export({ global: true, wrap: true, forced: !nativeSymbol, sham: !nativeSymbol }, {
Symbol: $Symbol
});
2021-03-02 10:28:33 +08:00
$forEach$3(objectKeys(WellKnownSymbolsStore), function (name) {
2020-01-17 14:55:39 +08:00
defineWellKnownSymbol(name);
});
_export({ target: SYMBOL, stat: true, forced: !nativeSymbol }, {
// `Symbol.for` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-symbol.for
2020-01-17 14:55:39 +08:00
'for': function (key) {
2021-10-29 14:30:00 +08:00
var string = toString_1(key);
if (hasOwnProperty_1(StringToSymbolRegistry, string)) { return StringToSymbolRegistry[string]; }
2020-01-17 14:55:39 +08:00
var symbol = $Symbol(string);
StringToSymbolRegistry[string] = symbol;
SymbolToStringRegistry[symbol] = string;
return symbol;
},
// `Symbol.keyFor` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-symbol.keyfor
2020-01-17 14:55:39 +08:00
keyFor: function keyFor(sym) {
2021-10-29 14:30:00 +08:00
if (!isSymbol(sym)) { throw TypeError$y(sym + ' is not a symbol'); }
if (hasOwnProperty_1(SymbolToStringRegistry, sym)) { return SymbolToStringRegistry[sym]; }
2020-01-17 14:55:39 +08:00
},
useSetter: function () { USE_SETTER = true; },
useSimple: function () { USE_SETTER = false; }
});
_export({ target: 'Object', stat: true, forced: !nativeSymbol, sham: !descriptors }, {
// `Object.create` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-object.create
2020-01-17 14:55:39 +08:00
create: $create,
// `Object.defineProperty` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-object.defineproperty
2020-01-17 14:55:39 +08:00
defineProperty: $defineProperty,
// `Object.defineProperties` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-object.defineproperties
2020-01-17 14:55:39 +08:00
defineProperties: $defineProperties,
// `Object.getOwnPropertyDescriptor` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-object.getownpropertydescriptors
2020-01-17 14:55:39 +08:00
getOwnPropertyDescriptor: $getOwnPropertyDescriptor
});
_export({ target: 'Object', stat: true, forced: !nativeSymbol }, {
// `Object.getOwnPropertyNames` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-object.getownpropertynames
2020-01-17 14:55:39 +08:00
getOwnPropertyNames: $getOwnPropertyNames,
// `Object.getOwnPropertySymbols` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-object.getownpropertysymbols
2020-01-17 14:55:39 +08:00
getOwnPropertySymbols: $getOwnPropertySymbols
});
// Chrome 38 and 39 `Object.getOwnPropertySymbols` fails on primitives
// https://bugs.chromium.org/p/v8/issues/detail?id=3443
_export({ target: 'Object', stat: true, forced: fails(function () { objectGetOwnPropertySymbols.f(1); }) }, {
getOwnPropertySymbols: function getOwnPropertySymbols(it) {
return objectGetOwnPropertySymbols.f(toObject(it));
}
});
// `JSON.stringify` method behavior with symbols
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-json.stringify
2021-03-02 10:28:33 +08:00
if ($stringify$1) {
2020-01-17 14:55:39 +08:00
var FORCED_JSON_STRINGIFY = !nativeSymbol || fails(function () {
var symbol = $Symbol();
// MS Edge converts symbol values to JSON as {}
2021-03-02 10:28:33 +08:00
return $stringify$1([symbol]) != '[null]'
2020-01-17 14:55:39 +08:00
// WebKit converts symbol values to JSON as null
2021-03-02 10:28:33 +08:00
|| $stringify$1({ a: symbol }) != '{}'
2020-01-17 14:55:39 +08:00
// V8 throws on boxed symbols
2021-03-02 10:28:33 +08:00
|| $stringify$1(Object(symbol)) != '{}';
2020-01-17 14:55:39 +08:00
});
_export({ target: 'JSON', stat: true, forced: FORCED_JSON_STRINGIFY }, {
2021-02-19 17:33:10 +08:00
// eslint-disable-next-line no-unused-vars -- required for `.length`
2020-01-17 14:55:39 +08:00
stringify: function stringify(it, replacer, space) {
2021-10-29 14:30:00 +08:00
var args = arraySlice$1(arguments);
var $replacer = replacer;
2020-01-17 14:55:39 +08:00
if (!isObject(replacer) && it === undefined || isSymbol(it)) { return; } // IE8 returns string on undefined
if (!isArray(replacer)) { replacer = function (key, value) {
2021-10-29 14:30:00 +08:00
if (isCallable($replacer)) { value = functionCall($replacer, this, key, value); }
2020-01-17 14:55:39 +08:00
if (!isSymbol(value)) { return value; }
}; }
args[1] = replacer;
2021-10-29 14:30:00 +08:00
return functionApply($stringify$1, null, args);
2020-01-17 14:55:39 +08:00
}
});
}
// `Symbol.prototype[@@toPrimitive]` method
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-symbol.prototype-@@toprimitive
2021-10-29 14:30:00 +08:00
if (!SymbolPrototype$1[TO_PRIMITIVE$1]) {
var valueOf = SymbolPrototype$1.valueOf;
// eslint-disable-next-line no-unused-vars -- required for .length
redefine(SymbolPrototype$1, TO_PRIMITIVE$1, function (hint) {
// TODO: improve hint logic
return functionCall(valueOf, this);
});
2020-01-17 14:55:39 +08:00
}
// `Symbol.prototype[@@toStringTag]` property
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-symbol.prototype-@@tostringtag
2020-01-17 14:55:39 +08:00
setToStringTag($Symbol, SYMBOL);
2021-03-02 10:28:33 +08:00
hiddenKeys$1[HIDDEN] = true;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var defineProperty$c = objectDefineProperty.f;
2020-01-17 14:55:39 +08:00
var NativeSymbol = global_1.Symbol;
2021-10-29 14:30:00 +08:00
var SymbolPrototype = NativeSymbol && NativeSymbol.prototype;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
if (descriptors && isCallable(NativeSymbol) && (!('description' in SymbolPrototype) ||
2020-01-17 14:55:39 +08:00
// Safari 12 bug
NativeSymbol().description !== undefined
)) {
var EmptyStringDescriptionStore = {};
// wrap Symbol constructor for correct work with undefined description
var SymbolWrapper = function Symbol() {
2021-10-29 14:30:00 +08:00
var description = arguments.length < 1 || arguments[0] === undefined ? undefined : toString_1(arguments[0]);
var result = objectIsPrototypeOf(SymbolPrototype, this)
2020-01-17 14:55:39 +08:00
? new NativeSymbol(description)
// in Edge 13, String(Symbol(undefined)) === 'Symbol(undefined)'
: description === undefined ? NativeSymbol() : NativeSymbol(description);
if (description === '') { EmptyStringDescriptionStore[result] = true; }
return result;
};
2021-10-29 14:30:00 +08:00
2020-01-17 14:55:39 +08:00
copyConstructorProperties(SymbolWrapper, NativeSymbol);
2021-10-29 14:30:00 +08:00
SymbolWrapper.prototype = SymbolPrototype;
SymbolPrototype.constructor = SymbolWrapper;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var NATIVE_SYMBOL = String(NativeSymbol('test')) == 'Symbol(test)';
var symbolToString = functionUncurryThis(SymbolPrototype.toString);
var symbolValueOf = functionUncurryThis(SymbolPrototype.valueOf);
2020-01-17 14:55:39 +08:00
var regexp = /^Symbol\((.*)\)[^)]+$/;
2021-10-29 14:30:00 +08:00
var replace$a = functionUncurryThis(''.replace);
var stringSlice$f = functionUncurryThis(''.slice);
defineProperty$c(SymbolPrototype, 'description', {
2020-01-17 14:55:39 +08:00
configurable: true,
get: function description() {
2021-10-29 14:30:00 +08:00
var symbol = symbolValueOf(this);
var string = symbolToString(symbol);
if (hasOwnProperty_1(EmptyStringDescriptionStore, symbol)) { return ''; }
var desc = NATIVE_SYMBOL ? stringSlice$f(string, 7, -1) : replace$a(string, regexp, '$1');
2020-01-17 14:55:39 +08:00
return desc === '' ? undefined : desc;
}
});
_export({ global: true, forced: true }, {
Symbol: SymbolWrapper
});
}
// `Symbol.asyncIterator` well-known symbol
// https://tc39.es/ecma262/#sec-symbol.asynciterator
defineWellKnownSymbol('asyncIterator');
2020-01-17 14:55:39 +08:00
// `Symbol.hasInstance` well-known symbol
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-symbol.hasinstance
2020-01-17 14:55:39 +08:00
defineWellKnownSymbol('hasInstance');
// `Symbol.isConcatSpreadable` well-known symbol
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-symbol.isconcatspreadable
2020-01-17 14:55:39 +08:00
defineWellKnownSymbol('isConcatSpreadable');
// `Symbol.iterator` well-known symbol
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-symbol.iterator
2020-01-17 14:55:39 +08:00
defineWellKnownSymbol('iterator');
// `Symbol.match` well-known symbol
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-symbol.match
2020-01-17 14:55:39 +08:00
defineWellKnownSymbol('match');
// `Symbol.matchAll` well-known symbol
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-symbol.matchall
2020-01-17 14:55:39 +08:00
defineWellKnownSymbol('matchAll');
// `Symbol.replace` well-known symbol
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-symbol.replace
2020-01-17 14:55:39 +08:00
defineWellKnownSymbol('replace');
// `Symbol.search` well-known symbol
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-symbol.search
2020-01-17 14:55:39 +08:00
defineWellKnownSymbol('search');
// `Symbol.species` well-known symbol
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-symbol.species
2020-01-17 14:55:39 +08:00
defineWellKnownSymbol('species');
// `Symbol.split` well-known symbol
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-symbol.split
2020-01-17 14:55:39 +08:00
defineWellKnownSymbol('split');
// `Symbol.toPrimitive` well-known symbol
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-symbol.toprimitive
2020-01-17 14:55:39 +08:00
defineWellKnownSymbol('toPrimitive');
// `Symbol.toStringTag` well-known symbol
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-symbol.tostringtag
2020-01-17 14:55:39 +08:00
defineWellKnownSymbol('toStringTag');
// `Symbol.unscopables` well-known symbol
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-symbol.unscopables
2020-01-17 14:55:39 +08:00
defineWellKnownSymbol('unscopables');
2021-02-19 17:33:10 +08:00
var correctPrototypeGetter = !fails(function () {
function F() { /* empty */ }
F.prototype.constructor = null;
// eslint-disable-next-line es/no-object-getprototypeof -- required for testing
2021-02-19 17:33:10 +08:00
return Object.getPrototypeOf(new F()) !== F.prototype;
2020-01-17 14:55:39 +08:00
});
2021-03-02 10:28:33 +08:00
var IE_PROTO = sharedKey('IE_PROTO');
2021-10-29 14:30:00 +08:00
var Object$3 = global_1.Object;
var ObjectPrototype$3 = Object$3.prototype;
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
// `Object.getPrototypeOf` method
// https://tc39.es/ecma262/#sec-object.getprototypeof
2021-10-29 14:30:00 +08:00
var objectGetPrototypeOf = correctPrototypeGetter ? Object$3.getPrototypeOf : function (O) {
var object = toObject(O);
if (hasOwnProperty_1(object, IE_PROTO)) { return object[IE_PROTO]; }
var constructor = object.constructor;
if (isCallable(constructor) && object instanceof constructor) {
return constructor.prototype;
} return object instanceof Object$3 ? ObjectPrototype$3 : null;
};
var String$3 = global_1.String;
var TypeError$x = global_1.TypeError;
var aPossiblePrototype = function (argument) {
if (typeof argument == 'object' || isCallable(argument)) { return argument; }
throw TypeError$x("Can't set " + String$3(argument) + ' as a prototype');
2020-01-17 14:55:39 +08:00
};
2021-02-19 17:33:10 +08:00
/* eslint-disable no-proto -- safe */
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
2021-02-19 17:33:10 +08:00
// `Object.setPrototypeOf` method
// https://tc39.es/ecma262/#sec-object.setprototypeof
// Works with __proto__ only. Old v8 can't work with null proto objects.
// eslint-disable-next-line es/no-object-setprototypeof -- safe
2021-02-19 17:33:10 +08:00
var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? function () {
var CORRECT_SETTER = false;
var test = {};
var setter;
try {
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
2021-10-29 14:30:00 +08:00
setter = functionUncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
setter(test, []);
2021-02-19 17:33:10 +08:00
CORRECT_SETTER = test instanceof Array;
} catch (error) { /* empty */ }
return function setPrototypeOf(O, proto) {
anObject(O);
aPossiblePrototype(proto);
2021-10-29 14:30:00 +08:00
if (CORRECT_SETTER) { setter(O, proto); }
2021-02-19 17:33:10 +08:00
else { O.__proto__ = proto; }
return O;
};
}() : undefined);
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var replace$9 = functionUncurryThis(''.replace);
var split$3 = functionUncurryThis(''.split);
var join$7 = functionUncurryThis([].join);
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var TEST = (function (arg) { return String(Error(arg).stack); })('zxcasd');
var V8_OR_CHAKRA_STACK_ENTRY = /\n\s*at [^:]*:[^\n]*/;
var IS_V8_OR_CHAKRA_STACK = V8_OR_CHAKRA_STACK_ENTRY.test(TEST);
var IS_FIREFOX_OR_SAFARI_STACK = /@[^\n]*\n/.test(TEST) && !/zxcasd/.test(TEST);
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var clearErrorStack = function (stack, dropEntries) {
if (typeof stack != 'string') { return stack; }
if (IS_V8_OR_CHAKRA_STACK) {
while (dropEntries--) { stack = replace$9(stack, V8_OR_CHAKRA_STACK_ENTRY, ''); }
} else if (IS_FIREFOX_OR_SAFARI_STACK) {
return join$7(arraySlice$1(split$3(stack, '\n'), dropEntries), '\n');
} return stack;
2020-01-17 14:55:39 +08:00
};
2021-10-29 14:30:00 +08:00
// `InstallErrorCause` abstract operation
// https://tc39.es/proposal-error-cause/#sec-errorobjects-install-error-cause
var installErrorCause = function (O, options) {
if (isObject(options) && 'cause' in options) {
createNonEnumerableProperty(O, 'cause', options.cause);
}
};
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var iterators = {};
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var ITERATOR$a = wellKnownSymbol('iterator');
var ArrayPrototype$1 = Array.prototype;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
// check on default Array iterator
var isArrayIteratorMethod = function (it) {
return it !== undefined && (iterators.Array === it || ArrayPrototype$1[ITERATOR$a] === it);
2020-01-17 14:55:39 +08:00
};
2021-10-29 14:30:00 +08:00
var ITERATOR$9 = wellKnownSymbol('iterator');
2020-01-17 14:55:39 +08:00
var getIteratorMethod = function (it) {
2021-10-29 14:30:00 +08:00
if (it != undefined) { return getMethod(it, ITERATOR$9)
|| getMethod(it, '@@iterator')
2020-01-17 14:55:39 +08:00
|| iterators[classof(it)]; }
};
2021-10-29 14:30:00 +08:00
var TypeError$w = global_1.TypeError;
var getIterator = function (argument, usingIterator) {
var iteratorMethod = arguments.length < 2 ? getIteratorMethod(argument) : usingIterator;
if (aCallable(iteratorMethod)) { return anObject(functionCall(iteratorMethod, argument)); }
throw TypeError$w(tryToString(argument) + ' is not iterable');
};
var iteratorClose = function (iterator, kind, value) {
var innerResult, innerError;
anObject(iterator);
try {
innerResult = getMethod(iterator, 'return');
if (!innerResult) {
if (kind === 'throw') { throw value; }
return value;
}
innerResult = functionCall(innerResult, iterator);
} catch (error) {
innerError = true;
innerResult = error;
2020-01-17 14:55:39 +08:00
}
2021-10-29 14:30:00 +08:00
if (kind === 'throw') { throw value; }
if (innerError) { throw innerResult; }
anObject(innerResult);
return value;
2020-01-17 14:55:39 +08:00
};
2021-10-29 14:30:00 +08:00
var TypeError$v = global_1.TypeError;
2020-01-17 14:55:39 +08:00
var Result = function (stopped, result) {
this.stopped = stopped;
this.result = result;
};
2021-10-29 14:30:00 +08:00
var ResultPrototype = Result.prototype;
2021-02-19 17:33:10 +08:00
var iterate = function (iterable, unboundFunction, options) {
var that = options && options.that;
var AS_ENTRIES = !!(options && options.AS_ENTRIES);
var IS_ITERATOR = !!(options && options.IS_ITERATOR);
var INTERRUPTED = !!(options && options.INTERRUPTED);
2021-10-29 14:30:00 +08:00
var fn = functionBindContext(unboundFunction, that);
2020-01-17 14:55:39 +08:00
var iterator, iterFn, index, length, result, next, step;
2021-02-19 17:33:10 +08:00
var stop = function (condition) {
2021-10-29 14:30:00 +08:00
if (iterator) { iteratorClose(iterator, 'normal', condition); }
2021-02-19 17:33:10 +08:00
return new Result(true, condition);
};
var callFn = function (value) {
if (AS_ENTRIES) {
anObject(value);
return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]);
} return INTERRUPTED ? fn(value, stop) : fn(value);
};
2020-01-17 14:55:39 +08:00
if (IS_ITERATOR) {
iterator = iterable;
} else {
iterFn = getIteratorMethod(iterable);
2021-10-29 14:30:00 +08:00
if (!iterFn) { throw TypeError$v(tryToString(iterable) + ' is not iterable'); }
2020-01-17 14:55:39 +08:00
// optimisation for array iterators
if (isArrayIteratorMethod(iterFn)) {
2021-10-29 14:30:00 +08:00
for (index = 0, length = lengthOfArrayLike(iterable); length > index; index++) {
2021-02-19 17:33:10 +08:00
result = callFn(iterable[index]);
2021-10-29 14:30:00 +08:00
if (result && objectIsPrototypeOf(ResultPrototype, result)) { return result; }
2020-01-17 14:55:39 +08:00
} return new Result(false);
}
2021-10-29 14:30:00 +08:00
iterator = getIterator(iterable, iterFn);
2020-01-17 14:55:39 +08:00
}
next = iterator.next;
2021-10-29 14:30:00 +08:00
while (!(step = functionCall(next, iterator)).done) {
2021-02-19 17:33:10 +08:00
try {
result = callFn(step.value);
} catch (error) {
2021-10-29 14:30:00 +08:00
iteratorClose(iterator, 'throw', error);
2021-02-19 17:33:10 +08:00
}
2021-10-29 14:30:00 +08:00
if (typeof result == 'object' && result && objectIsPrototypeOf(ResultPrototype, result)) { return result; }
2020-01-17 14:55:39 +08:00
} return new Result(false);
};
2021-10-29 14:30:00 +08:00
var normalizeStringArgument = function (argument, $default) {
return argument === undefined ? arguments.length < 2 ? '' : $default : toString_1(argument);
};
var errorStackInstallable = !fails(function () {
var error = Error('a');
if (!('stack' in error)) { return true; }
// eslint-disable-next-line es/no-object-defineproperty -- safe
Object.defineProperty(error, 'stack', createPropertyDescriptor(1, 7));
return error.stack !== 7;
});
var Error$2 = global_1.Error;
var push$g = [].push;
var $AggregateError = function AggregateError(errors, message /* , options */) {
var that = objectIsPrototypeOf(AggregateErrorPrototype, this) ? this : objectCreate(AggregateErrorPrototype);
var options = arguments.length > 2 ? arguments[2] : undefined;
2021-02-19 17:33:10 +08:00
if (objectSetPrototypeOf) {
2021-10-29 14:30:00 +08:00
that = objectSetPrototypeOf(new Error$2(undefined), objectGetPrototypeOf(that));
2021-02-19 17:33:10 +08:00
}
2021-10-29 14:30:00 +08:00
createNonEnumerableProperty(that, 'message', normalizeStringArgument(message, ''));
if (errorStackInstallable) { createNonEnumerableProperty(that, 'stack', clearErrorStack(that.stack, 1)); }
installErrorCause(that, options);
2021-02-19 17:33:10 +08:00
var errorsArray = [];
2021-10-29 14:30:00 +08:00
iterate(errors, push$g, { that: errorsArray });
2021-02-19 17:33:10 +08:00
createNonEnumerableProperty(that, 'errors', errorsArray);
return that;
2020-01-17 14:55:39 +08:00
};
2021-02-19 17:33:10 +08:00
2021-10-29 14:30:00 +08:00
if (objectSetPrototypeOf) { objectSetPrototypeOf($AggregateError, Error$2); }
else { copyConstructorProperties($AggregateError, Error$2); }
var AggregateErrorPrototype = $AggregateError.prototype = objectCreate(Error$2.prototype, {
constructor: createPropertyDescriptor(1, $AggregateError),
message: createPropertyDescriptor(1, ''),
name: createPropertyDescriptor(1, 'AggregateError')
2021-02-19 17:33:10 +08:00
});
// `AggregateError` constructor
// https://tc39.es/ecma262/#sec-aggregate-error-constructor
_export({ global: true }, {
AggregateError: $AggregateError
2020-01-17 14:55:39 +08:00
});
2021-10-29 14:30:00 +08:00
var UNSCOPABLES = wellKnownSymbol('unscopables');
var ArrayPrototype = Array.prototype;
// Array.prototype[@@unscopables]
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
if (ArrayPrototype[UNSCOPABLES] == undefined) {
objectDefineProperty.f(ArrayPrototype, UNSCOPABLES, {
configurable: true,
value: objectCreate(null)
});
}
// add a key to Array.prototype[@@unscopables]
var addToUnscopables = function (key) {
ArrayPrototype[UNSCOPABLES][key] = true;
};
// `Array.prototype.at` method
// https://github.com/tc39/proposal-relative-indexing-method
_export({ target: 'Array', proto: true }, {
at: function at(index) {
var O = toObject(this);
var len = lengthOfArrayLike(O);
var relativeIndex = toIntegerOrInfinity(index);
var k = relativeIndex >= 0 ? relativeIndex : len + relativeIndex;
return (k < 0 || k >= len) ? undefined : O[k];
}
});
addToUnscopables('at');
2020-01-17 14:55:39 +08:00
var createProperty = function (object, key, value) {
2021-10-29 14:30:00 +08:00
var propertyKey = toPropertyKey(key);
2020-01-17 14:55:39 +08:00
if (propertyKey in object) { objectDefineProperty.f(object, propertyKey, createPropertyDescriptor(0, value)); }
else { object[propertyKey] = value; }
};
2021-03-02 10:28:33 +08:00
var SPECIES$5 = wellKnownSymbol('species');
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
var arrayMethodHasSpeciesSupport = function (METHOD_NAME) {
// We can't use this feature detection in V8 since it causes
// deoptimization and serious performance degradation
// https://github.com/zloirock/core-js/issues/677
return engineV8Version >= 51 || !fails(function () {
var array = [];
var constructor = array.constructor = {};
2021-03-02 10:28:33 +08:00
constructor[SPECIES$5] = function () {
2021-02-19 17:33:10 +08:00
return { foo: 1 };
};
return array[METHOD_NAME](Boolean).foo !== 1;
});
};
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
2021-10-29 14:30:00 +08:00
var MAX_SAFE_INTEGER$2 = 0x1FFFFFFFFFFFFF;
2021-02-19 17:33:10 +08:00
var MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';
2021-10-29 14:30:00 +08:00
var TypeError$u = global_1.TypeError;
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
// We can't use this feature detection in V8 since it causes
// deoptimization and serious performance degradation
// https://github.com/zloirock/core-js/issues/679
var IS_CONCAT_SPREADABLE_SUPPORT = engineV8Version >= 51 || !fails(function () {
var array = [];
array[IS_CONCAT_SPREADABLE] = false;
return array.concat()[0] !== array;
2020-01-17 14:55:39 +08:00
});
2021-02-19 17:33:10 +08:00
var SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
var isConcatSpreadable = function (O) {
if (!isObject(O)) { return false; }
var spreadable = O[IS_CONCAT_SPREADABLE];
return spreadable !== undefined ? !!spreadable : isArray(O);
};
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var FORCED$q = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
// `Array.prototype.concat` method
// https://tc39.es/ecma262/#sec-array.prototype.concat
// with adding support of @@isConcatSpreadable and @@species
2021-10-29 14:30:00 +08:00
_export({ target: 'Array', proto: true, forced: FORCED$q }, {
2021-02-19 17:33:10 +08:00
// eslint-disable-next-line no-unused-vars -- required for `.length`
concat: function concat(arg) {
var arguments$1 = arguments;
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
var O = toObject(this);
var A = arraySpeciesCreate(O, 0);
var n = 0;
var i, k, length, len, E;
for (i = -1, length = arguments.length; i < length; i++) {
E = i === -1 ? O : arguments$1[i];
if (isConcatSpreadable(E)) {
2021-10-29 14:30:00 +08:00
len = lengthOfArrayLike(E);
if (n + len > MAX_SAFE_INTEGER$2) { throw TypeError$u(MAXIMUM_ALLOWED_INDEX_EXCEEDED); }
2021-02-19 17:33:10 +08:00
for (k = 0; k < len; k++, n++) { if (k in E) { createProperty(A, n, E[k]); } }
} else {
2021-10-29 14:30:00 +08:00
if (n >= MAX_SAFE_INTEGER$2) { throw TypeError$u(MAXIMUM_ALLOWED_INDEX_EXCEEDED); }
2021-02-19 17:33:10 +08:00
createProperty(A, n++, E);
}
}
A.length = n;
return A;
2020-01-17 14:55:39 +08:00
}
});
2021-10-29 14:30:00 +08:00
var min$8 = Math.min;
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
// `Array.prototype.copyWithin` method implementation
// https://tc39.es/ecma262/#sec-array.prototype.copywithin
// eslint-disable-next-line es/no-array-prototype-copywithin -- safe
2021-02-19 17:33:10 +08:00
var arrayCopyWithin = [].copyWithin || function copyWithin(target /* = 0 */, start /* = 0, end = @length */) {
var O = toObject(this);
2021-10-29 14:30:00 +08:00
var len = lengthOfArrayLike(O);
2021-02-19 17:33:10 +08:00
var to = toAbsoluteIndex(target, len);
var from = toAbsoluteIndex(start, len);
var end = arguments.length > 2 ? arguments[2] : undefined;
2021-10-29 14:30:00 +08:00
var count = min$8((end === undefined ? len : toAbsoluteIndex(end, len)) - from, len - to);
2021-02-19 17:33:10 +08:00
var inc = 1;
if (from < to && to < from + count) {
inc = -1;
from += count - 1;
to += count - 1;
}
while (count-- > 0) {
if (from in O) { O[to] = O[from]; }
else { delete O[to]; }
to += inc;
from += inc;
} return O;
};
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
// `Array.prototype.copyWithin` method
// https://tc39.es/ecma262/#sec-array.prototype.copywithin
_export({ target: 'Array', proto: true }, {
copyWithin: arrayCopyWithin
2020-01-17 14:55:39 +08:00
});
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
addToUnscopables('copyWithin');
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
var arrayMethodIsStrict = function (METHOD_NAME, argument) {
var method = [][METHOD_NAME];
return !!method && fails(function () {
// eslint-disable-next-line no-useless-call,no-throw-literal -- required for testing
method.call(null, argument || function () { throw 1; }, 1);
});
};
2021-03-02 10:28:33 +08:00
var $every$2 = arrayIteration.every;
2021-02-19 17:33:10 +08:00
2021-03-02 10:28:33 +08:00
var STRICT_METHOD$8 = arrayMethodIsStrict('every');
2021-02-19 17:33:10 +08:00
// `Array.prototype.every` method
// https://tc39.es/ecma262/#sec-array.prototype.every
2021-03-02 10:28:33 +08:00
_export({ target: 'Array', proto: true, forced: !STRICT_METHOD$8 }, {
2021-02-19 17:33:10 +08:00
every: function every(callbackfn /* , thisArg */) {
2021-03-02 10:28:33 +08:00
return $every$2(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
2020-01-17 14:55:39 +08:00
}
});
2021-02-19 17:33:10 +08:00
// `Array.prototype.fill` method implementation
// https://tc39.es/ecma262/#sec-array.prototype.fill
var arrayFill = function fill(value /* , start = 0, end = @length */) {
var O = toObject(this);
2021-10-29 14:30:00 +08:00
var length = lengthOfArrayLike(O);
2021-02-19 17:33:10 +08:00
var argumentsLength = arguments.length;
var index = toAbsoluteIndex(argumentsLength > 1 ? arguments[1] : undefined, length);
var end = argumentsLength > 2 ? arguments[2] : undefined;
var endPos = end === undefined ? length : toAbsoluteIndex(end, length);
while (endPos > index) { O[index++] = value; }
return O;
2020-01-17 14:55:39 +08:00
};
2021-02-19 17:33:10 +08:00
// `Array.prototype.fill` method
// https://tc39.es/ecma262/#sec-array.prototype.fill
_export({ target: 'Array', proto: true }, {
fill: arrayFill
});
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
addToUnscopables('fill');
2021-03-02 10:28:33 +08:00
var $filter$1 = arrayIteration.filter;
2021-02-19 17:33:10 +08:00
2021-03-02 10:28:33 +08:00
var HAS_SPECIES_SUPPORT$3 = arrayMethodHasSpeciesSupport('filter');
2021-02-19 17:33:10 +08:00
// `Array.prototype.filter` method
// https://tc39.es/ecma262/#sec-array.prototype.filter
// with adding support of @@species
2021-03-02 10:28:33 +08:00
_export({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT$3 }, {
2021-02-19 17:33:10 +08:00
filter: function filter(callbackfn /* , thisArg */) {
2021-03-02 10:28:33 +08:00
return $filter$1(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
2021-02-19 17:33:10 +08:00
}
2020-01-17 14:55:39 +08:00
});
2021-03-02 10:28:33 +08:00
var $find$2 = arrayIteration.find;
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
var FIND = 'find';
2021-03-02 10:28:33 +08:00
var SKIPS_HOLES$1 = true;
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
// Shouldn't skip holes
2021-03-02 10:28:33 +08:00
if (FIND in []) { Array(1)[FIND](function () { SKIPS_HOLES$1 = false; }); }
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
// `Array.prototype.find` method
// https://tc39.es/ecma262/#sec-array.prototype.find
2021-03-02 10:28:33 +08:00
_export({ target: 'Array', proto: true, forced: SKIPS_HOLES$1 }, {
2021-02-19 17:33:10 +08:00
find: function find(callbackfn /* , that = undefined */) {
2021-03-02 10:28:33 +08:00
return $find$2(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
2021-02-19 17:33:10 +08:00
}
});
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
addToUnscopables(FIND);
2020-01-17 14:55:39 +08:00
2021-03-02 10:28:33 +08:00
var $findIndex$1 = arrayIteration.findIndex;
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
var FIND_INDEX = 'findIndex';
2021-03-02 10:28:33 +08:00
var SKIPS_HOLES = true;
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
// Shouldn't skip holes
2021-03-02 10:28:33 +08:00
if (FIND_INDEX in []) { Array(1)[FIND_INDEX](function () { SKIPS_HOLES = false; }); }
2021-02-19 17:33:10 +08:00
// `Array.prototype.findIndex` method
// https://tc39.es/ecma262/#sec-array.prototype.findindex
2021-03-02 10:28:33 +08:00
_export({ target: 'Array', proto: true, forced: SKIPS_HOLES }, {
2021-02-19 17:33:10 +08:00
findIndex: function findIndex(callbackfn /* , that = undefined */) {
2021-03-02 10:28:33 +08:00
return $findIndex$1(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
2021-02-19 17:33:10 +08:00
}
2020-01-17 14:55:39 +08:00
});
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
addToUnscopables(FIND_INDEX);
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var TypeError$t = global_1.TypeError;
2021-02-19 17:33:10 +08:00
// `FlattenIntoArray` abstract operation
// https://tc39.github.io/proposal-flatMap/#sec-FlattenIntoArray
var flattenIntoArray = function (target, original, source, sourceLen, start, depth, mapper, thisArg) {
var targetIndex = start;
var sourceIndex = 0;
2021-10-29 14:30:00 +08:00
var mapFn = mapper ? functionBindContext(mapper, thisArg) : false;
var element, elementLen;
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
while (sourceIndex < sourceLen) {
if (sourceIndex in source) {
element = mapFn ? mapFn(source[sourceIndex], sourceIndex, original) : source[sourceIndex];
if (depth > 0 && isArray(element)) {
2021-10-29 14:30:00 +08:00
elementLen = lengthOfArrayLike(element);
targetIndex = flattenIntoArray(target, original, element, elementLen, targetIndex, depth - 1) - 1;
2021-02-19 17:33:10 +08:00
} else {
2021-10-29 14:30:00 +08:00
if (targetIndex >= 0x1FFFFFFFFFFFFF) { throw TypeError$t('Exceed the acceptable array length'); }
2021-02-19 17:33:10 +08:00
target[targetIndex] = element;
2020-01-17 14:55:39 +08:00
}
2021-02-19 17:33:10 +08:00
targetIndex++;
2020-01-17 14:55:39 +08:00
}
2021-02-19 17:33:10 +08:00
sourceIndex++;
}
return targetIndex;
};
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
var flattenIntoArray_1 = flattenIntoArray;
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
// `Array.prototype.flat` method
// https://tc39.es/ecma262/#sec-array.prototype.flat
_export({ target: 'Array', proto: true }, {
flat: function flat(/* depthArg = 1 */) {
var depthArg = arguments.length ? arguments[0] : undefined;
var O = toObject(this);
2021-10-29 14:30:00 +08:00
var sourceLen = lengthOfArrayLike(O);
2021-02-19 17:33:10 +08:00
var A = arraySpeciesCreate(O, 0);
2021-10-29 14:30:00 +08:00
A.length = flattenIntoArray_1(A, O, O, sourceLen, 0, depthArg === undefined ? 1 : toIntegerOrInfinity(depthArg));
2021-02-19 17:33:10 +08:00
return A;
}
});
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
// `Array.prototype.flatMap` method
// https://tc39.es/ecma262/#sec-array.prototype.flatmap
_export({ target: 'Array', proto: true }, {
flatMap: function flatMap(callbackfn /* , thisArg */) {
var O = toObject(this);
2021-10-29 14:30:00 +08:00
var sourceLen = lengthOfArrayLike(O);
2021-02-19 17:33:10 +08:00
var A;
2021-10-29 14:30:00 +08:00
aCallable(callbackfn);
2021-02-19 17:33:10 +08:00
A = arraySpeciesCreate(O, 0);
A.length = flattenIntoArray_1(A, O, O, sourceLen, 0, 1, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
return A;
}
2020-01-17 14:55:39 +08:00
});
2021-03-02 10:28:33 +08:00
var $forEach$2 = arrayIteration.forEach;
2021-02-19 17:33:10 +08:00
2021-03-02 10:28:33 +08:00
var STRICT_METHOD$7 = arrayMethodIsStrict('forEach');
2021-02-19 17:33:10 +08:00
// `Array.prototype.forEach` method implementation
// https://tc39.es/ecma262/#sec-array.prototype.foreach
2021-03-02 10:28:33 +08:00
var arrayForEach = !STRICT_METHOD$7 ? function forEach(callbackfn /* , thisArg */) {
return $forEach$2(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
// eslint-disable-next-line es/no-array-prototype-foreach -- safe
2021-02-19 17:33:10 +08:00
} : [].forEach;
// `Array.prototype.forEach` method
// https://tc39.es/ecma262/#sec-array.prototype.foreach
// eslint-disable-next-line es/no-array-prototype-foreach -- safe
2021-02-19 17:33:10 +08:00
_export({ target: 'Array', proto: true, forced: [].forEach != arrayForEach }, {
forEach: arrayForEach
});
// call something on iterator step with safe closing on error
var callWithSafeIterationClosing = function (iterator, fn, value, ENTRIES) {
try {
return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value);
} catch (error) {
2021-10-29 14:30:00 +08:00
iteratorClose(iterator, 'throw', error);
}
};
2021-10-29 14:30:00 +08:00
var Array$9 = global_1.Array;
// `Array.from` method implementation
// https://tc39.es/ecma262/#sec-array.from
var arrayFrom = function from(arrayLike /* , mapfn = undefined, thisArg = undefined */) {
var O = toObject(arrayLike);
2021-10-29 14:30:00 +08:00
var IS_CONSTRUCTOR = isConstructor(this);
var argumentsLength = arguments.length;
var mapfn = argumentsLength > 1 ? arguments[1] : undefined;
var mapping = mapfn !== undefined;
2021-10-29 14:30:00 +08:00
if (mapping) { mapfn = functionBindContext(mapfn, argumentsLength > 2 ? arguments[2] : undefined); }
var iteratorMethod = getIteratorMethod(O);
var index = 0;
var length, result, step, iterator, next, value;
// if the target is not iterable or it's an array with the default iterator - use a simple case
2021-10-29 14:30:00 +08:00
if (iteratorMethod && !(this == Array$9 && isArrayIteratorMethod(iteratorMethod))) {
iterator = getIterator(O, iteratorMethod);
next = iterator.next;
2021-10-29 14:30:00 +08:00
result = IS_CONSTRUCTOR ? new this() : [];
for (;!(step = functionCall(next, iterator)).done; index++) {
value = mapping ? callWithSafeIterationClosing(iterator, mapfn, [step.value, index], true) : step.value;
createProperty(result, index, value);
}
} else {
2021-10-29 14:30:00 +08:00
length = lengthOfArrayLike(O);
result = IS_CONSTRUCTOR ? new this(length) : Array$9(length);
for (;length > index; index++) {
value = mapping ? mapfn(O[index], index) : O[index];
createProperty(result, index, value);
}
}
result.length = index;
return result;
};
2021-10-29 14:30:00 +08:00
var ITERATOR$8 = wellKnownSymbol('iterator');
var SAFE_CLOSING = false;
try {
var called = 0;
var iteratorWithReturn = {
next: function () {
return { done: !!called++ };
},
'return': function () {
SAFE_CLOSING = true;
}
};
2021-10-29 14:30:00 +08:00
iteratorWithReturn[ITERATOR$8] = function () {
return this;
};
// eslint-disable-next-line es/no-array-from, no-throw-literal -- required for testing
Array.from(iteratorWithReturn, function () { throw 2; });
} catch (error) { /* empty */ }
var checkCorrectnessOfIteration = function (exec, SKIP_CLOSING) {
if (!SKIP_CLOSING && !SAFE_CLOSING) { return false; }
var ITERATION_SUPPORT = false;
try {
var object = {};
2021-10-29 14:30:00 +08:00
object[ITERATOR$8] = function () {
return {
next: function () {
return { done: ITERATION_SUPPORT = true };
}
};
};
exec(object);
} catch (error) { /* empty */ }
return ITERATION_SUPPORT;
};
var INCORRECT_ITERATION$1 = !checkCorrectnessOfIteration(function (iterable) {
// eslint-disable-next-line es/no-array-from -- required for testing
Array.from(iterable);
});
// `Array.from` method
// https://tc39.es/ecma262/#sec-array.from
_export({ target: 'Array', stat: true, forced: INCORRECT_ITERATION$1 }, {
from: arrayFrom
});
2021-03-02 10:28:33 +08:00
var $includes$1 = arrayIncludes.includes;
2021-02-19 17:33:10 +08:00
// `Array.prototype.includes` method
// https://tc39.es/ecma262/#sec-array.prototype.includes
_export({ target: 'Array', proto: true }, {
includes: function includes(el /* , fromIndex = 0 */) {
2021-03-02 10:28:33 +08:00
return $includes$1(this, el, arguments.length > 1 ? arguments[1] : undefined);
2021-02-19 17:33:10 +08:00
}
});
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
addToUnscopables('includes');
/* eslint-disable es/no-array-prototype-indexof -- required for testing */
2021-02-19 17:33:10 +08:00
2021-10-29 14:30:00 +08:00
var $IndexOf = arrayIncludes.indexOf;
2021-02-19 17:33:10 +08:00
2021-10-29 14:30:00 +08:00
var un$IndexOf = functionUncurryThis([].indexOf);
var NEGATIVE_ZERO$1 = !!un$IndexOf && 1 / un$IndexOf([1], 1, -0) < 0;
2021-03-02 10:28:33 +08:00
var STRICT_METHOD$6 = arrayMethodIsStrict('indexOf');
2021-02-19 17:33:10 +08:00
// `Array.prototype.indexOf` method
// https://tc39.es/ecma262/#sec-array.prototype.indexof
2021-03-02 10:28:33 +08:00
_export({ target: 'Array', proto: true, forced: NEGATIVE_ZERO$1 || !STRICT_METHOD$6 }, {
2021-02-19 17:33:10 +08:00
indexOf: function indexOf(searchElement /* , fromIndex = 0 */) {
2021-10-29 14:30:00 +08:00
var fromIndex = arguments.length > 1 ? arguments[1] : undefined;
2021-03-02 10:28:33 +08:00
return NEGATIVE_ZERO$1
2021-02-19 17:33:10 +08:00
// convert -0 to +0
2021-10-29 14:30:00 +08:00
? un$IndexOf(this, searchElement, fromIndex) || 0
: $IndexOf(this, searchElement, fromIndex);
2021-02-19 17:33:10 +08:00
}
});
// `Array.isArray` method
// https://tc39.es/ecma262/#sec-array.isarray
_export({ target: 'Array', stat: true }, {
isArray: isArray
});
2021-10-29 14:30:00 +08:00
var ITERATOR$7 = wellKnownSymbol('iterator');
var BUGGY_SAFARI_ITERATORS$1 = false;
// `%IteratorPrototype%` object
// https://tc39.es/ecma262/#sec-%iteratorprototype%-object
2021-10-29 14:30:00 +08:00
var IteratorPrototype$5, PrototypeOfArrayIteratorPrototype, arrayIterator$1;
/* eslint-disable es/no-array-prototype-keys -- safe */
if ([].keys) {
2021-10-29 14:30:00 +08:00
arrayIterator$1 = [].keys();
// Safari 8 has buggy iterators w/o `next`
2021-10-29 14:30:00 +08:00
if (!('next' in arrayIterator$1)) { BUGGY_SAFARI_ITERATORS$1 = true; }
else {
2021-10-29 14:30:00 +08:00
PrototypeOfArrayIteratorPrototype = objectGetPrototypeOf(objectGetPrototypeOf(arrayIterator$1));
if (PrototypeOfArrayIteratorPrototype !== Object.prototype) { IteratorPrototype$5 = PrototypeOfArrayIteratorPrototype; }
}
}
2021-10-29 14:30:00 +08:00
var NEW_ITERATOR_PROTOTYPE = IteratorPrototype$5 == undefined || fails(function () {
var test = {};
// FF44- legacy iterators case
2021-10-29 14:30:00 +08:00
return IteratorPrototype$5[ITERATOR$7].call(test) !== test;
});
2021-10-29 14:30:00 +08:00
if (NEW_ITERATOR_PROTOTYPE) { IteratorPrototype$5 = {}; }
// `%IteratorPrototype%[@@iterator]()` method
// https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
2021-10-29 14:30:00 +08:00
if (!isCallable(IteratorPrototype$5[ITERATOR$7])) {
redefine(IteratorPrototype$5, ITERATOR$7, function () {
return this;
});
}
var iteratorsCore = {
2021-10-29 14:30:00 +08:00
IteratorPrototype: IteratorPrototype$5,
BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS$1
};
2021-10-29 14:30:00 +08:00
var IteratorPrototype$4 = iteratorsCore.IteratorPrototype;
var returnThis$1 = function () { return this; };
var createIteratorConstructor = function (IteratorConstructor, NAME, next) {
var TO_STRING_TAG = NAME + ' Iterator';
2021-10-29 14:30:00 +08:00
IteratorConstructor.prototype = objectCreate(IteratorPrototype$4, { next: createPropertyDescriptor(1, next) });
setToStringTag(IteratorConstructor, TO_STRING_TAG, false);
iterators[TO_STRING_TAG] = returnThis$1;
return IteratorConstructor;
};
2021-10-29 14:30:00 +08:00
var PROPER_FUNCTION_NAME$4 = functionName.PROPER;
var CONFIGURABLE_FUNCTION_NAME$1 = functionName.CONFIGURABLE;
var IteratorPrototype$3 = iteratorsCore.IteratorPrototype;
var BUGGY_SAFARI_ITERATORS = iteratorsCore.BUGGY_SAFARI_ITERATORS;
2021-10-29 14:30:00 +08:00
var ITERATOR$6 = wellKnownSymbol('iterator');
var KEYS = 'keys';
var VALUES = 'values';
var ENTRIES = 'entries';
var returnThis = function () { return this; };
var defineIterator = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {
createIteratorConstructor(IteratorConstructor, NAME, next);
var getIterationMethod = function (KIND) {
if (KIND === DEFAULT && defaultIterator) { return defaultIterator; }
if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) { return IterablePrototype[KIND]; }
switch (KIND) {
case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };
case VALUES: return function values() { return new IteratorConstructor(this, KIND); };
case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };
} return function () { return new IteratorConstructor(this); };
};
var TO_STRING_TAG = NAME + ' Iterator';
var INCORRECT_VALUES_NAME = false;
var IterablePrototype = Iterable.prototype;
2021-10-29 14:30:00 +08:00
var nativeIterator = IterablePrototype[ITERATOR$6]
|| IterablePrototype['@@iterator']
|| DEFAULT && IterablePrototype[DEFAULT];
var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);
var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;
var CurrentIteratorPrototype, methods, KEY;
// fix native
if (anyNativeIterator) {
CurrentIteratorPrototype = objectGetPrototypeOf(anyNativeIterator.call(new Iterable()));
2021-10-29 14:30:00 +08:00
if (CurrentIteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {
if (objectGetPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype$3) {
if (objectSetPrototypeOf) {
2021-10-29 14:30:00 +08:00
objectSetPrototypeOf(CurrentIteratorPrototype, IteratorPrototype$3);
} else if (!isCallable(CurrentIteratorPrototype[ITERATOR$6])) {
redefine(CurrentIteratorPrototype, ITERATOR$6, returnThis);
}
}
// Set @@toStringTag to native iterators
setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true);
}
}
// fix Array.prototype.{ values, @@iterator }.name in V8 / FF
2021-10-29 14:30:00 +08:00
if (PROPER_FUNCTION_NAME$4 && DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {
if (CONFIGURABLE_FUNCTION_NAME$1) {
createNonEnumerableProperty(IterablePrototype, 'name', VALUES);
} else {
INCORRECT_VALUES_NAME = true;
defaultIterator = function values() { return functionCall(nativeIterator, this); };
}
}
// export additional methods
if (DEFAULT) {
methods = {
values: getIterationMethod(VALUES),
keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),
entries: getIterationMethod(ENTRIES)
};
if (FORCED) { for (KEY in methods) {
if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
redefine(IterablePrototype, KEY, methods[KEY]);
}
} } else { _export({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods); }
}
2021-10-29 14:30:00 +08:00
// define iterator
if (IterablePrototype[ITERATOR$6] !== defaultIterator) {
redefine(IterablePrototype, ITERATOR$6, defaultIterator, { name: DEFAULT });
}
iterators[NAME] = defaultIterator;
return methods;
};
var ARRAY_ITERATOR = 'Array Iterator';
2021-10-29 14:30:00 +08:00
var setInternalState$g = internalState.set;
var getInternalState$f = internalState.getterFor(ARRAY_ITERATOR);
// `Array.prototype.entries` method
// https://tc39.es/ecma262/#sec-array.prototype.entries
// `Array.prototype.keys` method
// https://tc39.es/ecma262/#sec-array.prototype.keys
// `Array.prototype.values` method
// https://tc39.es/ecma262/#sec-array.prototype.values
// `Array.prototype[@@iterator]` method
// https://tc39.es/ecma262/#sec-array.prototype-@@iterator
// `CreateArrayIterator` internal method
// https://tc39.es/ecma262/#sec-createarrayiterator
var es_array_iterator = defineIterator(Array, 'Array', function (iterated, kind) {
2021-10-29 14:30:00 +08:00
setInternalState$g(this, {
type: ARRAY_ITERATOR,
target: toIndexedObject(iterated), // target
index: 0, // next index
kind: kind // kind
});
// `%ArrayIteratorPrototype%.next` method
// https://tc39.es/ecma262/#sec-%arrayiteratorprototype%.next
}, function () {
2021-10-29 14:30:00 +08:00
var state = getInternalState$f(this);
var target = state.target;
var kind = state.kind;
var index = state.index++;
if (!target || index >= target.length) {
state.target = undefined;
return { value: undefined, done: true };
}
if (kind == 'keys') { return { value: index, done: false }; }
if (kind == 'values') { return { value: target[index], done: false }; }
return { value: [index, target[index]], done: false };
}, 'values');
// argumentsList[@@iterator] is %ArrayProto_values%
// https://tc39.es/ecma262/#sec-createunmappedargumentsobject
// https://tc39.es/ecma262/#sec-createmappedargumentsobject
iterators.Arguments = iterators.Array;
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
addToUnscopables('keys');
addToUnscopables('values');
addToUnscopables('entries');
2021-10-29 14:30:00 +08:00
var un$Join = functionUncurryThis([].join);
var ES3_STRINGS = indexedObject != Object;
var STRICT_METHOD$5 = arrayMethodIsStrict('join', ',');
// `Array.prototype.join` method
// https://tc39.es/ecma262/#sec-array.prototype.join
_export({ target: 'Array', proto: true, forced: ES3_STRINGS || !STRICT_METHOD$5 }, {
join: function join(separator) {
2021-10-29 14:30:00 +08:00
return un$Join(toIndexedObject(this), separator === undefined ? ',' : separator);
}
});
/* eslint-disable es/no-array-prototype-lastindexof -- safe */
2021-02-19 17:33:10 +08:00
2021-10-29 14:30:00 +08:00
var min$7 = Math.min;
var $lastIndexOf = [].lastIndexOf;
var NEGATIVE_ZERO = !!$lastIndexOf && 1 / [1].lastIndexOf(1, -0) < 0;
2021-02-19 17:33:10 +08:00
var STRICT_METHOD$4 = arrayMethodIsStrict('lastIndexOf');
2021-10-29 14:30:00 +08:00
var FORCED$p = NEGATIVE_ZERO || !STRICT_METHOD$4;
2021-02-19 17:33:10 +08:00
// `Array.prototype.lastIndexOf` method implementation
// https://tc39.es/ecma262/#sec-array.prototype.lastindexof
2021-10-29 14:30:00 +08:00
var arrayLastIndexOf = FORCED$p ? function lastIndexOf(searchElement /* , fromIndex = @[*-1] */) {
2021-02-19 17:33:10 +08:00
// convert -0 to +0
2021-10-29 14:30:00 +08:00
if (NEGATIVE_ZERO) { return functionApply($lastIndexOf, this, arguments) || 0; }
2021-02-19 17:33:10 +08:00
var O = toIndexedObject(this);
2021-10-29 14:30:00 +08:00
var length = lengthOfArrayLike(O);
2021-02-19 17:33:10 +08:00
var index = length - 1;
2021-10-29 14:30:00 +08:00
if (arguments.length > 1) { index = min$7(index, toIntegerOrInfinity(arguments[1])); }
2021-02-19 17:33:10 +08:00
if (index < 0) { index = length + index; }
for (;index >= 0; index--) { if (index in O && O[index] === searchElement) { return index || 0; } }
return -1;
} : $lastIndexOf;
2021-02-19 17:33:10 +08:00
// `Array.prototype.lastIndexOf` method
// https://tc39.es/ecma262/#sec-array.prototype.lastindexof
// eslint-disable-next-line es/no-array-prototype-lastindexof -- required for testing
2021-02-19 17:33:10 +08:00
_export({ target: 'Array', proto: true, forced: arrayLastIndexOf !== [].lastIndexOf }, {
lastIndexOf: arrayLastIndexOf
});
2021-03-02 10:28:33 +08:00
var $map$1 = arrayIteration.map;
2021-02-19 17:33:10 +08:00
2021-03-02 10:28:33 +08:00
var HAS_SPECIES_SUPPORT$2 = arrayMethodHasSpeciesSupport('map');
2021-02-19 17:33:10 +08:00
// `Array.prototype.map` method
// https://tc39.es/ecma262/#sec-array.prototype.map
// with adding support of @@species
2021-03-02 10:28:33 +08:00
_export({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT$2 }, {
2021-02-19 17:33:10 +08:00
map: function map(callbackfn /* , thisArg */) {
2021-03-02 10:28:33 +08:00
return $map$1(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
2020-01-17 14:55:39 +08:00
}
2021-02-19 17:33:10 +08:00
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var Array$8 = global_1.Array;
var ISNT_GENERIC = fails(function () {
function F() { /* empty */ }
2021-10-29 14:30:00 +08:00
return !(Array$8.of.call(F) instanceof F);
});
// `Array.of` method
// https://tc39.es/ecma262/#sec-array.of
// WebKit Array.of isn't generic
_export({ target: 'Array', stat: true, forced: ISNT_GENERIC }, {
of: function of(/* ...args */) {
var arguments$1 = arguments;
var index = 0;
var argumentsLength = arguments.length;
2021-10-29 14:30:00 +08:00
var result = new (isConstructor(this) ? this : Array$8)(argumentsLength);
while (argumentsLength > index) { createProperty(result, index, arguments$1[index++]); }
result.length = argumentsLength;
return result;
}
});
2021-10-29 14:30:00 +08:00
var TypeError$s = global_1.TypeError;
2021-02-19 17:33:10 +08:00
// `Array.prototype.{ reduce, reduceRight }` methods implementation
2021-03-02 10:28:33 +08:00
var createMethod$6 = function (IS_RIGHT) {
2021-02-19 17:33:10 +08:00
return function (that, callbackfn, argumentsLength, memo) {
2021-10-29 14:30:00 +08:00
aCallable(callbackfn);
2021-02-19 17:33:10 +08:00
var O = toObject(that);
var self = indexedObject(O);
2021-10-29 14:30:00 +08:00
var length = lengthOfArrayLike(O);
2021-02-19 17:33:10 +08:00
var index = IS_RIGHT ? length - 1 : 0;
var i = IS_RIGHT ? -1 : 1;
if (argumentsLength < 2) { while (true) {
if (index in self) {
memo = self[index];
index += i;
break;
}
index += i;
if (IS_RIGHT ? index < 0 : length <= index) {
2021-10-29 14:30:00 +08:00
throw TypeError$s('Reduce of empty array with no initial value');
2021-02-19 17:33:10 +08:00
}
} }
for (;IS_RIGHT ? index >= 0 : length > index; index += i) { if (index in self) {
memo = callbackfn(memo, self[index], index, O);
} }
return memo;
2020-01-17 14:55:39 +08:00
};
2021-02-19 17:33:10 +08:00
};
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
var arrayReduce = {
// `Array.prototype.reduce` method
// https://tc39.es/ecma262/#sec-array.prototype.reduce
2021-03-02 10:28:33 +08:00
left: createMethod$6(false),
2021-02-19 17:33:10 +08:00
// `Array.prototype.reduceRight` method
// https://tc39.es/ecma262/#sec-array.prototype.reduceright
2021-03-02 10:28:33 +08:00
right: createMethod$6(true)
2020-01-17 14:55:39 +08:00
};
var engineIsNode = classofRaw(global_1.process) == 'process';
2021-03-02 10:28:33 +08:00
var $reduce$1 = arrayReduce.left;
2020-01-17 14:55:39 +08:00
2021-03-02 10:28:33 +08:00
var STRICT_METHOD$3 = arrayMethodIsStrict('reduce');
2021-02-19 17:33:10 +08:00
// Chrome 80-82 has a critical bug
// https://bugs.chromium.org/p/chromium/issues/detail?id=1049982
2021-03-02 10:28:33 +08:00
var CHROME_BUG$1 = !engineIsNode && engineV8Version > 79 && engineV8Version < 83;
2021-02-19 17:33:10 +08:00
// `Array.prototype.reduce` method
// https://tc39.es/ecma262/#sec-array.prototype.reduce
2021-03-02 10:28:33 +08:00
_export({ target: 'Array', proto: true, forced: !STRICT_METHOD$3 || CHROME_BUG$1 }, {
2021-02-19 17:33:10 +08:00
reduce: function reduce(callbackfn /* , initialValue */) {
2021-10-29 14:30:00 +08:00
var length = arguments.length;
return $reduce$1(this, callbackfn, length, length > 1 ? arguments[1] : undefined);
2020-01-17 14:55:39 +08:00
}
});
2021-03-02 10:28:33 +08:00
var $reduceRight$1 = arrayReduce.right;
2020-01-17 14:55:39 +08:00
2021-03-02 10:28:33 +08:00
var STRICT_METHOD$2 = arrayMethodIsStrict('reduceRight');
2021-02-19 17:33:10 +08:00
// Chrome 80-82 has a critical bug
// https://bugs.chromium.org/p/chromium/issues/detail?id=1049982
2021-03-02 10:28:33 +08:00
var CHROME_BUG = !engineIsNode && engineV8Version > 79 && engineV8Version < 83;
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
// `Array.prototype.reduceRight` method
// https://tc39.es/ecma262/#sec-array.prototype.reduceright
2021-03-02 10:28:33 +08:00
_export({ target: 'Array', proto: true, forced: !STRICT_METHOD$2 || CHROME_BUG }, {
2021-02-19 17:33:10 +08:00
reduceRight: function reduceRight(callbackfn /* , initialValue */) {
2021-03-02 10:28:33 +08:00
return $reduceRight$1(this, callbackfn, arguments.length, arguments.length > 1 ? arguments[1] : undefined);
2021-02-19 17:33:10 +08:00
}
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var un$Reverse = functionUncurryThis([].reverse);
2021-02-19 17:33:10 +08:00
var test$1 = [1, 2];
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
// `Array.prototype.reverse` method
// https://tc39.es/ecma262/#sec-array.prototype.reverse
// fix for Safari 12.0 bug
// https://bugs.webkit.org/show_bug.cgi?id=188794
_export({ target: 'Array', proto: true, forced: String(test$1) === String(test$1.reverse()) }, {
reverse: function reverse() {
// eslint-disable-next-line no-self-assign -- dirty hack
if (isArray(this)) { this.length = this.length; }
2021-10-29 14:30:00 +08:00
return un$Reverse(this);
2021-02-19 17:33:10 +08:00
}
2020-01-17 14:55:39 +08:00
});
2021-03-02 10:28:33 +08:00
var HAS_SPECIES_SUPPORT$1 = arrayMethodHasSpeciesSupport('slice');
2020-01-17 14:55:39 +08:00
2021-03-02 10:28:33 +08:00
var SPECIES$4 = wellKnownSymbol('species');
2021-10-29 14:30:00 +08:00
var Array$7 = global_1.Array;
var max$5 = Math.max;
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
// `Array.prototype.slice` method
// https://tc39.es/ecma262/#sec-array.prototype.slice
// fallback for not array-like ES3 strings and DOM objects
2021-03-02 10:28:33 +08:00
_export({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT$1 }, {
2021-02-19 17:33:10 +08:00
slice: function slice(start, end) {
var O = toIndexedObject(this);
2021-10-29 14:30:00 +08:00
var length = lengthOfArrayLike(O);
2021-02-19 17:33:10 +08:00
var k = toAbsoluteIndex(start, length);
var fin = toAbsoluteIndex(end === undefined ? length : end, length);
// inline `ArraySpeciesCreate` for usage native `Array#slice` where it's possible
var Constructor, result, n;
if (isArray(O)) {
Constructor = O.constructor;
// cross-realm fallback
2021-10-29 14:30:00 +08:00
if (isConstructor(Constructor) && (Constructor === Array$7 || isArray(Constructor.prototype))) {
2021-02-19 17:33:10 +08:00
Constructor = undefined;
} else if (isObject(Constructor)) {
2021-03-02 10:28:33 +08:00
Constructor = Constructor[SPECIES$4];
2021-02-19 17:33:10 +08:00
if (Constructor === null) { Constructor = undefined; }
}
2021-10-29 14:30:00 +08:00
if (Constructor === Array$7 || Constructor === undefined) {
return arraySlice$1(O, k, fin);
2020-01-17 14:55:39 +08:00
}
}
2021-10-29 14:30:00 +08:00
result = new (Constructor === undefined ? Array$7 : Constructor)(max$5(fin - k, 0));
2021-02-19 17:33:10 +08:00
for (n = 0; k < fin; k++, n++) { if (k in O) { createProperty(result, n, O[k]); } }
result.length = n;
return result;
2020-01-17 14:55:39 +08:00
}
});
2021-03-02 10:28:33 +08:00
var $some$2 = arrayIteration.some;
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
2021-03-02 10:28:33 +08:00
var STRICT_METHOD$1 = arrayMethodIsStrict('some');
2021-02-19 17:33:10 +08:00
// `Array.prototype.some` method
// https://tc39.es/ecma262/#sec-array.prototype.some
2021-03-02 10:28:33 +08:00
_export({ target: 'Array', proto: true, forced: !STRICT_METHOD$1 }, {
2021-02-19 17:33:10 +08:00
some: function some(callbackfn /* , thisArg */) {
2021-03-02 10:28:33 +08:00
return $some$2(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
2020-01-17 14:55:39 +08:00
}
2021-02-19 17:33:10 +08:00
});
2020-01-17 14:55:39 +08:00
var floor$9 = Math.floor;
var mergeSort = function (array, comparefn) {
var length = array.length;
var middle = floor$9(length / 2);
return length < 8 ? insertionSort(array, comparefn) : merge(
2021-10-29 14:30:00 +08:00
array,
mergeSort(arraySlice$1(array, 0, middle), comparefn),
mergeSort(arraySlice$1(array, middle), comparefn),
comparefn
);
};
var insertionSort = function (array, comparefn) {
var length = array.length;
var i = 1;
var element, j;
while (i < length) {
j = i;
element = array[i];
while (j && comparefn(array[j - 1], element) > 0) {
array[j] = array[--j];
}
if (j !== i++) { array[j] = element; }
} return array;
};
2021-10-29 14:30:00 +08:00
var merge = function (array, left, right, comparefn) {
var llength = left.length;
var rlength = right.length;
var lindex = 0;
var rindex = 0;
while (lindex < llength || rindex < rlength) {
2021-10-29 14:30:00 +08:00
array[lindex + rindex] = (lindex < llength && rindex < rlength)
? comparefn(left[lindex], right[rindex]) <= 0 ? left[lindex++] : right[rindex++]
: lindex < llength ? left[lindex++] : right[rindex++];
} return array;
};
var arraySort = mergeSort;
var firefox = engineUserAgent.match(/firefox\/(\d+)/i);
var engineFfVersion = !!firefox && +firefox[1];
var engineIsIeOrEdge = /MSIE|Trident/.test(engineUserAgent);
var webkit = engineUserAgent.match(/AppleWebKit\/(\d+)\./);
var engineWebkitVersion = !!webkit && +webkit[1];
2021-03-02 10:28:33 +08:00
var test = [];
2021-10-29 14:30:00 +08:00
var un$Sort$1 = functionUncurryThis(test.sort);
var push$f = functionUncurryThis(test.push);
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
// IE8-
var FAILS_ON_UNDEFINED = fails(function () {
2021-03-02 10:28:33 +08:00
test.sort(undefined);
2021-02-19 17:33:10 +08:00
});
// V8 bug
var FAILS_ON_NULL = fails(function () {
2021-03-02 10:28:33 +08:00
test.sort(null);
2021-02-19 17:33:10 +08:00
});
// Old WebKit
2021-03-02 10:28:33 +08:00
var STRICT_METHOD = arrayMethodIsStrict('sort');
2020-01-17 14:55:39 +08:00
var STABLE_SORT$1 = !fails(function () {
// feature detection can be too slow, so check engines versions
if (engineV8Version) { return engineV8Version < 70; }
if (engineFfVersion && engineFfVersion > 3) { return; }
if (engineIsIeOrEdge) { return true; }
if (engineWebkitVersion) { return engineWebkitVersion < 603; }
var result = '';
var code, chr, value, index;
// generate an array with more 512 elements (Chakra and old V8 fails only in this case)
for (code = 65; code < 76; code++) {
chr = String.fromCharCode(code);
switch (code) {
case 66: case 69: case 70: case 72: value = 3; break;
case 68: case 71: value = 4; break;
default: value = 2;
}
for (index = 0; index < 47; index++) {
test.push({ k: chr + index, v: value });
}
}
test.sort(function (a, b) { return b.v - a.v; });
for (index = 0; index < test.length; index++) {
chr = test[index].k.charAt(0);
if (result.charAt(result.length - 1) !== chr) { result += chr; }
}
return result !== 'DGBEFHACIJK';
});
2021-10-29 14:30:00 +08:00
var FORCED$o = FAILS_ON_UNDEFINED || !FAILS_ON_NULL || !STRICT_METHOD || !STABLE_SORT$1;
var getSortCompare$1 = function (comparefn) {
return function (x, y) {
if (y === undefined) { return -1; }
if (x === undefined) { return 1; }
if (comparefn !== undefined) { return +comparefn(x, y) || 0; }
2021-10-29 14:30:00 +08:00
return toString_1(x) > toString_1(y) ? 1 : -1;
};
};
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
// `Array.prototype.sort` method
// https://tc39.es/ecma262/#sec-array.prototype.sort
2021-10-29 14:30:00 +08:00
_export({ target: 'Array', proto: true, forced: FORCED$o }, {
2021-02-19 17:33:10 +08:00
sort: function sort(comparefn) {
2021-10-29 14:30:00 +08:00
if (comparefn !== undefined) { aCallable(comparefn); }
2021-09-22 10:28:02 +08:00
var array = toObject(this);
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
if (STABLE_SORT$1) { return comparefn === undefined ? un$Sort$1(array) : un$Sort$1(array, comparefn); }
var items = [];
2021-10-29 14:30:00 +08:00
var arrayLength = lengthOfArrayLike(array);
var itemsLength, index;
for (index = 0; index < arrayLength; index++) {
2021-10-29 14:30:00 +08:00
if (index in array) { push$f(items, array[index]); }
}
2021-10-29 14:30:00 +08:00
arraySort(items, getSortCompare$1(comparefn));
itemsLength = items.length;
index = 0;
while (index < itemsLength) { array[index] = items[index++]; }
while (index < arrayLength) { delete array[index++]; }
return array;
}
});
var SPECIES$3 = wellKnownSymbol('species');
var setSpecies = function (CONSTRUCTOR_NAME) {
var Constructor = getBuiltIn(CONSTRUCTOR_NAME);
var defineProperty = objectDefineProperty.f;
if (descriptors && Constructor && !Constructor[SPECIES$3]) {
defineProperty(Constructor, SPECIES$3, {
configurable: true,
get: function () { return this; }
});
}
};
// `Array[@@species]` getter
// https://tc39.es/ecma262/#sec-get-array-@@species
setSpecies('Array');
var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('splice');
2021-10-29 14:30:00 +08:00
var TypeError$r = global_1.TypeError;
var max$4 = Math.max;
var min$6 = Math.min;
var MAX_SAFE_INTEGER$1 = 0x1FFFFFFFFFFFFF;
2021-02-19 17:33:10 +08:00
var MAXIMUM_ALLOWED_LENGTH_EXCEEDED = 'Maximum allowed length exceeded';
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
// `Array.prototype.splice` method
// https://tc39.es/ecma262/#sec-array.prototype.splice
// with adding support of @@species
2021-03-02 10:28:33 +08:00
_export({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
2021-02-19 17:33:10 +08:00
splice: function splice(start, deleteCount /* , ...items */) {
var arguments$1 = arguments;
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
var O = toObject(this);
2021-10-29 14:30:00 +08:00
var len = lengthOfArrayLike(O);
2021-02-19 17:33:10 +08:00
var actualStart = toAbsoluteIndex(start, len);
var argumentsLength = arguments.length;
var insertCount, actualDeleteCount, A, k, from, to;
if (argumentsLength === 0) {
insertCount = actualDeleteCount = 0;
} else if (argumentsLength === 1) {
insertCount = 0;
actualDeleteCount = len - actualStart;
} else {
insertCount = argumentsLength - 2;
2021-10-29 14:30:00 +08:00
actualDeleteCount = min$6(max$4(toIntegerOrInfinity(deleteCount), 0), len - actualStart);
2021-02-19 17:33:10 +08:00
}
2021-10-29 14:30:00 +08:00
if (len + insertCount - actualDeleteCount > MAX_SAFE_INTEGER$1) {
throw TypeError$r(MAXIMUM_ALLOWED_LENGTH_EXCEEDED);
2021-02-19 17:33:10 +08:00
}
A = arraySpeciesCreate(O, actualDeleteCount);
for (k = 0; k < actualDeleteCount; k++) {
from = actualStart + k;
if (from in O) { createProperty(A, k, O[from]); }
}
A.length = actualDeleteCount;
if (insertCount < actualDeleteCount) {
for (k = actualStart; k < len - actualDeleteCount; k++) {
from = k + actualDeleteCount;
to = k + insertCount;
if (from in O) { O[to] = O[from]; }
else { delete O[to]; }
}
for (k = len; k > len - actualDeleteCount + insertCount; k--) { delete O[k - 1]; }
} else if (insertCount > actualDeleteCount) {
for (k = len - actualDeleteCount; k > actualStart; k--) {
from = k + actualDeleteCount - 1;
to = k + insertCount - 1;
if (from in O) { O[to] = O[from]; }
else { delete O[to]; }
}
}
for (k = 0; k < insertCount; k++) {
O[k + actualStart] = arguments$1[k + 2];
}
O.length = len - actualDeleteCount + insertCount;
return A;
}
});
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
// this method was added to unscopables after implementation
// in popular engines, so it's moved to a separate module
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
addToUnscopables('flat');
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
// this method was added to unscopables after implementation
// in popular engines, so it's moved to a separate module
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
addToUnscopables('flatMap');
2020-01-17 14:55:39 +08:00
// eslint-disable-next-line es/no-typed-arrays -- safe
2021-10-29 14:30:00 +08:00
var arrayBufferNative = typeof ArrayBuffer != 'undefined' && typeof DataView != 'undefined';
2020-01-17 14:55:39 +08:00
var redefineAll = function (target, src, options) {
for (var key in src) { redefine(target, key, src[key], options); }
return target;
};
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var TypeError$q = global_1.TypeError;
var anInstance = function (it, Prototype) {
if (objectIsPrototypeOf(Prototype, it)) { return it; }
throw TypeError$q('Incorrect invocation');
};
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var RangeError$b = global_1.RangeError;
// `ToIndex` abstract operation
// https://tc39.es/ecma262/#sec-toindex
var toIndex = function (it) {
if (it === undefined) { return 0; }
2021-10-29 14:30:00 +08:00
var number = toIntegerOrInfinity(it);
var length = toLength(number);
2021-10-29 14:30:00 +08:00
if (number !== length) { throw RangeError$b('Wrong length or index'); }
return length;
};
2020-01-17 14:55:39 +08:00
// IEEE754 conversions based on https://github.com/feross/ieee754
2021-10-29 14:30:00 +08:00
var Array$6 = global_1.Array;
var abs$7 = Math.abs;
var pow$4 = Math.pow;
var floor$8 = Math.floor;
var log$8 = Math.log;
var LN2$2 = Math.LN2;
2020-01-17 14:55:39 +08:00
var pack = function (number, mantissaLength, bytes) {
2021-10-29 14:30:00 +08:00
var buffer = Array$6(bytes);
var exponentLength = bytes * 8 - mantissaLength - 1;
var eMax = (1 << exponentLength) - 1;
var eBias = eMax >> 1;
var rt = mantissaLength === 23 ? pow$4(2, -24) - pow$4(2, -77) : 0;
var sign = number < 0 || number === 0 && 1 / number < 0 ? 1 : 0;
var index = 0;
var exponent, mantissa, c;
number = abs$7(number);
// eslint-disable-next-line no-self-compare -- NaN check
if (number != number || number === Infinity) {
// eslint-disable-next-line no-self-compare -- NaN check
mantissa = number != number ? 1 : 0;
exponent = eMax;
} else {
exponent = floor$8(log$8(number) / LN2$2);
if (number * (c = pow$4(2, -exponent)) < 1) {
exponent--;
c *= 2;
}
if (exponent + eBias >= 1) {
number += rt / c;
} else {
number += rt * pow$4(2, 1 - eBias);
}
if (number * c >= 2) {
exponent++;
c /= 2;
}
if (exponent + eBias >= eMax) {
mantissa = 0;
exponent = eMax;
} else if (exponent + eBias >= 1) {
mantissa = (number * c - 1) * pow$4(2, mantissaLength);
exponent = exponent + eBias;
} else {
mantissa = number * pow$4(2, eBias - 1) * pow$4(2, mantissaLength);
exponent = 0;
}
}
for (; mantissaLength >= 8; buffer[index++] = mantissa & 255, mantissa /= 256, mantissaLength -= 8){ }
exponent = exponent << mantissaLength | mantissa;
exponentLength += mantissaLength;
for (; exponentLength > 0; buffer[index++] = exponent & 255, exponent /= 256, exponentLength -= 8){ }
buffer[--index] |= sign * 128;
return buffer;
};
2020-01-17 14:55:39 +08:00
var unpack = function (buffer, mantissaLength) {
var bytes = buffer.length;
var exponentLength = bytes * 8 - mantissaLength - 1;
var eMax = (1 << exponentLength) - 1;
var eBias = eMax >> 1;
var nBits = exponentLength - 7;
var index = bytes - 1;
var sign = buffer[index--];
var exponent = sign & 127;
var mantissa;
sign >>= 7;
for (; nBits > 0; exponent = exponent * 256 + buffer[index], index--, nBits -= 8){ }
mantissa = exponent & (1 << -nBits) - 1;
exponent >>= -nBits;
nBits += mantissaLength;
for (; nBits > 0; mantissa = mantissa * 256 + buffer[index], index--, nBits -= 8){ }
if (exponent === 0) {
exponent = 1 - eBias;
} else if (exponent === eMax) {
return mantissa ? NaN : sign ? -Infinity : Infinity;
} else {
mantissa = mantissa + pow$4(2, mantissaLength);
exponent = exponent - eBias;
} return (sign ? -1 : 1) * mantissa * pow$4(2, exponent - mantissaLength);
};
2020-01-17 14:55:39 +08:00
var ieee754 = {
pack: pack,
unpack: unpack
2021-05-12 15:34:21 +08:00
};
2020-01-17 14:55:39 +08:00
var getOwnPropertyNames$3 = objectGetOwnPropertyNames.f;
2021-10-29 14:30:00 +08:00
var defineProperty$b = objectDefineProperty.f;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var PROPER_FUNCTION_NAME$3 = functionName.PROPER;
var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
var getInternalState$e = internalState.get;
var setInternalState$f = internalState.set;
var ARRAY_BUFFER$1 = 'ArrayBuffer';
var DATA_VIEW = 'DataView';
var PROTOTYPE = 'prototype';
var WRONG_LENGTH = 'Wrong length';
var WRONG_INDEX = 'Wrong index';
var NativeArrayBuffer$1 = global_1[ARRAY_BUFFER$1];
var $ArrayBuffer = NativeArrayBuffer$1;
2021-10-29 14:30:00 +08:00
var ArrayBufferPrototype = $ArrayBuffer && $ArrayBuffer[PROTOTYPE];
var $DataView = global_1[DATA_VIEW];
2021-10-29 14:30:00 +08:00
var DataViewPrototype$1 = $DataView && $DataView[PROTOTYPE];
var ObjectPrototype$2 = Object.prototype;
var Array$5 = global_1.Array;
var RangeError$a = global_1.RangeError;
var fill = functionUncurryThis(arrayFill);
var reverse = functionUncurryThis([].reverse);
2020-01-17 14:55:39 +08:00
var packIEEE754 = ieee754.pack;
var unpackIEEE754 = ieee754.unpack;
2020-01-17 14:55:39 +08:00
var packInt8 = function (number) {
return [number & 0xFF];
2021-09-22 10:28:02 +08:00
};
2020-01-17 14:55:39 +08:00
var packInt16 = function (number) {
return [number & 0xFF, number >> 8 & 0xFF];
};
2020-01-17 14:55:39 +08:00
var packInt32 = function (number) {
return [number & 0xFF, number >> 8 & 0xFF, number >> 16 & 0xFF, number >> 24 & 0xFF];
};
2020-01-17 14:55:39 +08:00
var unpackInt32 = function (buffer) {
return buffer[3] << 24 | buffer[2] << 16 | buffer[1] << 8 | buffer[0];
};
2020-01-17 14:55:39 +08:00
var packFloat32 = function (number) {
return packIEEE754(number, 23, 4);
};
2020-01-17 14:55:39 +08:00
var packFloat64 = function (number) {
return packIEEE754(number, 52, 8);
};
2021-09-01 10:47:40 +08:00
var addGetter = function (Constructor, key) {
2021-10-29 14:30:00 +08:00
defineProperty$b(Constructor[PROTOTYPE], key, { get: function () { return getInternalState$e(this)[key]; } });
};
2021-09-22 10:28:02 +08:00
var get$1 = function (view, count, index, isLittleEndian) {
var intIndex = toIndex(index);
2021-10-29 14:30:00 +08:00
var store = getInternalState$e(view);
if (intIndex + count > store.byteLength) { throw RangeError$a(WRONG_INDEX); }
var bytes = getInternalState$e(store.buffer).bytes;
var start = intIndex + store.byteOffset;
2021-10-29 14:30:00 +08:00
var pack = arraySlice$1(bytes, start, start + count);
return isLittleEndian ? pack : reverse(pack);
};
2020-01-17 14:55:39 +08:00
var set$2 = function (view, count, index, conversion, value, isLittleEndian) {
var intIndex = toIndex(index);
2021-10-29 14:30:00 +08:00
var store = getInternalState$e(view);
if (intIndex + count > store.byteLength) { throw RangeError$a(WRONG_INDEX); }
var bytes = getInternalState$e(store.buffer).bytes;
var start = intIndex + store.byteOffset;
var pack = conversion(+value);
for (var i = 0; i < count; i++) { bytes[start + i] = pack[isLittleEndian ? i : count - i - 1]; }
};
if (!arrayBufferNative) {
$ArrayBuffer = function ArrayBuffer(length) {
2021-10-29 14:30:00 +08:00
anInstance(this, ArrayBufferPrototype);
var byteLength = toIndex(length);
2021-10-29 14:30:00 +08:00
setInternalState$f(this, {
bytes: fill(Array$5(byteLength), 0),
byteLength: byteLength
});
if (!descriptors) { this.byteLength = byteLength; }
};
2021-10-29 14:30:00 +08:00
ArrayBufferPrototype = $ArrayBuffer[PROTOTYPE];
$DataView = function DataView(buffer, byteOffset, byteLength) {
2021-10-29 14:30:00 +08:00
anInstance(this, DataViewPrototype$1);
anInstance(buffer, ArrayBufferPrototype);
var bufferLength = getInternalState$e(buffer).byteLength;
var offset = toIntegerOrInfinity(byteOffset);
if (offset < 0 || offset > bufferLength) { throw RangeError$a('Wrong offset'); }
byteLength = byteLength === undefined ? bufferLength - offset : toLength(byteLength);
2021-10-29 14:30:00 +08:00
if (offset + byteLength > bufferLength) { throw RangeError$a(WRONG_LENGTH); }
setInternalState$f(this, {
buffer: buffer,
byteLength: byteLength,
byteOffset: offset
});
if (!descriptors) {
this.buffer = buffer;
this.byteLength = byteLength;
this.byteOffset = offset;
}
};
2021-10-29 14:30:00 +08:00
DataViewPrototype$1 = $DataView[PROTOTYPE];
if (descriptors) {
addGetter($ArrayBuffer, 'byteLength');
addGetter($DataView, 'buffer');
addGetter($DataView, 'byteLength');
addGetter($DataView, 'byteOffset');
}
2021-10-29 14:30:00 +08:00
redefineAll(DataViewPrototype$1, {
getInt8: function getInt8(byteOffset) {
return get$1(this, 1, byteOffset)[0] << 24 >> 24;
},
getUint8: function getUint8(byteOffset) {
return get$1(this, 1, byteOffset)[0];
},
getInt16: function getInt16(byteOffset /* , littleEndian */) {
var bytes = get$1(this, 2, byteOffset, arguments.length > 1 ? arguments[1] : undefined);
return (bytes[1] << 8 | bytes[0]) << 16 >> 16;
},
getUint16: function getUint16(byteOffset /* , littleEndian */) {
var bytes = get$1(this, 2, byteOffset, arguments.length > 1 ? arguments[1] : undefined);
return bytes[1] << 8 | bytes[0];
},
getInt32: function getInt32(byteOffset /* , littleEndian */) {
return unpackInt32(get$1(this, 4, byteOffset, arguments.length > 1 ? arguments[1] : undefined));
},
getUint32: function getUint32(byteOffset /* , littleEndian */) {
return unpackInt32(get$1(this, 4, byteOffset, arguments.length > 1 ? arguments[1] : undefined)) >>> 0;
},
getFloat32: function getFloat32(byteOffset /* , littleEndian */) {
return unpackIEEE754(get$1(this, 4, byteOffset, arguments.length > 1 ? arguments[1] : undefined), 23);
},
getFloat64: function getFloat64(byteOffset /* , littleEndian */) {
return unpackIEEE754(get$1(this, 8, byteOffset, arguments.length > 1 ? arguments[1] : undefined), 52);
},
setInt8: function setInt8(byteOffset, value) {
set$2(this, 1, byteOffset, packInt8, value);
},
setUint8: function setUint8(byteOffset, value) {
set$2(this, 1, byteOffset, packInt8, value);
},
setInt16: function setInt16(byteOffset, value /* , littleEndian */) {
set$2(this, 2, byteOffset, packInt16, value, arguments.length > 2 ? arguments[2] : undefined);
},
setUint16: function setUint16(byteOffset, value /* , littleEndian */) {
set$2(this, 2, byteOffset, packInt16, value, arguments.length > 2 ? arguments[2] : undefined);
},
setInt32: function setInt32(byteOffset, value /* , littleEndian */) {
set$2(this, 4, byteOffset, packInt32, value, arguments.length > 2 ? arguments[2] : undefined);
},
setUint32: function setUint32(byteOffset, value /* , littleEndian */) {
set$2(this, 4, byteOffset, packInt32, value, arguments.length > 2 ? arguments[2] : undefined);
},
setFloat32: function setFloat32(byteOffset, value /* , littleEndian */) {
set$2(this, 4, byteOffset, packFloat32, value, arguments.length > 2 ? arguments[2] : undefined);
},
setFloat64: function setFloat64(byteOffset, value /* , littleEndian */) {
set$2(this, 8, byteOffset, packFloat64, value, arguments.length > 2 ? arguments[2] : undefined);
}
});
} else {
2021-10-29 14:30:00 +08:00
var INCORRECT_ARRAY_BUFFER_NAME = PROPER_FUNCTION_NAME$3 && NativeArrayBuffer$1.name !== ARRAY_BUFFER$1;
/* eslint-disable no-new -- required for testing */
if (!fails(function () {
NativeArrayBuffer$1(1);
}) || !fails(function () {
new NativeArrayBuffer$1(-1);
}) || fails(function () {
new NativeArrayBuffer$1();
new NativeArrayBuffer$1(1.5);
new NativeArrayBuffer$1(NaN);
2021-10-29 14:30:00 +08:00
return INCORRECT_ARRAY_BUFFER_NAME && !CONFIGURABLE_FUNCTION_NAME;
})) {
/* eslint-enable no-new -- required for testing */
$ArrayBuffer = function ArrayBuffer(length) {
2021-10-29 14:30:00 +08:00
anInstance(this, ArrayBufferPrototype);
return new NativeArrayBuffer$1(toIndex(length));
};
2021-10-29 14:30:00 +08:00
$ArrayBuffer[PROTOTYPE] = ArrayBufferPrototype;
for (var keys$2 = getOwnPropertyNames$3(NativeArrayBuffer$1), j$1 = 0, key$1; keys$2.length > j$1;) {
if (!((key$1 = keys$2[j$1++]) in $ArrayBuffer)) {
createNonEnumerableProperty($ArrayBuffer, key$1, NativeArrayBuffer$1[key$1]);
}
}
2021-10-29 14:30:00 +08:00
ArrayBufferPrototype.constructor = $ArrayBuffer;
2021-10-29 14:30:00 +08:00
} else if (INCORRECT_ARRAY_BUFFER_NAME && CONFIGURABLE_FUNCTION_NAME) {
createNonEnumerableProperty(NativeArrayBuffer$1, 'name', ARRAY_BUFFER$1);
2021-09-22 10:28:02 +08:00
}
2020-01-17 14:55:39 +08:00
// WebKit bug - the same parent prototype for typed arrays and data view
2021-10-29 14:30:00 +08:00
if (objectSetPrototypeOf && objectGetPrototypeOf(DataViewPrototype$1) !== ObjectPrototype$2) {
objectSetPrototypeOf(DataViewPrototype$1, ObjectPrototype$2);
}
2020-01-17 14:55:39 +08:00
// iOS Safari 7.x bug
var testView = new $DataView(new $ArrayBuffer(2));
2021-10-29 14:30:00 +08:00
var $setInt8 = functionUncurryThis(DataViewPrototype$1.setInt8);
testView.setInt8(0, 2147483648);
testView.setInt8(1, 2147483649);
2021-10-29 14:30:00 +08:00
if (testView.getInt8(0) || !testView.getInt8(1)) { redefineAll(DataViewPrototype$1, {
setInt8: function setInt8(byteOffset, value) {
2021-10-29 14:30:00 +08:00
$setInt8(this, byteOffset, value << 24 >> 24);
},
setUint8: function setUint8(byteOffset, value) {
2021-10-29 14:30:00 +08:00
$setInt8(this, byteOffset, value << 24 >> 24);
}
}, { unsafe: true }); }
}
2020-01-17 14:55:39 +08:00
setToStringTag($ArrayBuffer, ARRAY_BUFFER$1);
setToStringTag($DataView, DATA_VIEW);
var arrayBuffer = {
ArrayBuffer: $ArrayBuffer,
DataView: $DataView
2021-02-19 17:33:10 +08:00
};
2020-01-17 14:55:39 +08:00
var ARRAY_BUFFER = 'ArrayBuffer';
var ArrayBuffer$3 = arrayBuffer[ARRAY_BUFFER];
var NativeArrayBuffer = global_1[ARRAY_BUFFER];
2020-01-17 14:55:39 +08:00
// `ArrayBuffer` constructor
// https://tc39.es/ecma262/#sec-arraybuffer-constructor
_export({ global: true, forced: NativeArrayBuffer !== ArrayBuffer$3 }, {
ArrayBuffer: ArrayBuffer$3
2020-01-17 14:55:39 +08:00
});
setSpecies(ARRAY_BUFFER);
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var defineProperty$a = objectDefineProperty.f;
2020-01-17 14:55:39 +08:00
var Int8Array$3 = global_1.Int8Array;
var Int8ArrayPrototype = Int8Array$3 && Int8Array$3.prototype;
var Uint8ClampedArray = global_1.Uint8ClampedArray;
var Uint8ClampedArrayPrototype = Uint8ClampedArray && Uint8ClampedArray.prototype;
var TypedArray = Int8Array$3 && objectGetPrototypeOf(Int8Array$3);
var TypedArrayPrototype = Int8ArrayPrototype && objectGetPrototypeOf(Int8ArrayPrototype);
2021-10-29 14:30:00 +08:00
var ObjectPrototype$1 = Object.prototype;
var TypeError$p = global_1.TypeError;
2020-01-17 14:55:39 +08:00
var TO_STRING_TAG$5 = wellKnownSymbol('toStringTag');
var TYPED_ARRAY_TAG = uid('TYPED_ARRAY_TAG');
2021-10-29 14:30:00 +08:00
var TYPED_ARRAY_CONSTRUCTOR$1 = uid('TYPED_ARRAY_CONSTRUCTOR');
// Fixing native typed arrays in Opera Presto crashes the browser, see #595
var NATIVE_ARRAY_BUFFER_VIEWS$2 = arrayBufferNative && !!objectSetPrototypeOf && classof(global_1.opera) !== 'Opera';
var TYPED_ARRAY_TAG_REQIRED = false;
2021-10-29 14:30:00 +08:00
var NAME$1, Constructor, Prototype;
2020-01-17 14:55:39 +08:00
var TypedArrayConstructorsList = {
Int8Array: 1,
Uint8Array: 1,
Uint8ClampedArray: 1,
Int16Array: 2,
Uint16Array: 2,
Int32Array: 4,
Uint32Array: 4,
Float32Array: 4,
Float64Array: 8
};
2020-01-17 14:55:39 +08:00
var BigIntArrayConstructorsList = {
BigInt64Array: 8,
BigUint64Array: 8
};
2021-02-19 17:33:10 +08:00
var isView = function isView(it) {
if (!isObject(it)) { return false; }
var klass = classof(it);
return klass === 'DataView'
2021-10-29 14:30:00 +08:00
|| hasOwnProperty_1(TypedArrayConstructorsList, klass)
|| hasOwnProperty_1(BigIntArrayConstructorsList, klass);
};
2020-01-17 14:55:39 +08:00
var isTypedArray = function (it) {
if (!isObject(it)) { return false; }
var klass = classof(it);
2021-10-29 14:30:00 +08:00
return hasOwnProperty_1(TypedArrayConstructorsList, klass)
|| hasOwnProperty_1(BigIntArrayConstructorsList, klass);
};
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var aTypedArray$t = function (it) {
if (isTypedArray(it)) { return it; }
2021-10-29 14:30:00 +08:00
throw TypeError$p('Target is not a typed array');
2021-05-12 15:34:21 +08:00
};
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var aTypedArrayConstructor$4 = function (C) {
if (isCallable(C) && (!objectSetPrototypeOf || objectIsPrototypeOf(TypedArray, C))) { return C; }
throw TypeError$p(tryToString(C) + ' is not a typed array constructor');
2021-09-22 10:28:02 +08:00
};
2021-09-01 10:47:40 +08:00
2021-10-29 14:30:00 +08:00
var exportTypedArrayMethod$u = function (KEY, property, forced) {
if (!descriptors) { return; }
if (forced) { for (var ARRAY in TypedArrayConstructorsList) {
var TypedArrayConstructor = global_1[ARRAY];
2021-10-29 14:30:00 +08:00
if (TypedArrayConstructor && hasOwnProperty_1(TypedArrayConstructor.prototype, KEY)) { try {
delete TypedArrayConstructor.prototype[KEY];
} catch (error) { /* empty */ } }
} }
if (!TypedArrayPrototype[KEY] || forced) {
redefine(TypedArrayPrototype, KEY, forced ? property
: NATIVE_ARRAY_BUFFER_VIEWS$2 && Int8ArrayPrototype[KEY] || property);
}
};
2021-10-29 14:30:00 +08:00
var exportTypedArrayStaticMethod$3 = function (KEY, property, forced) {
var ARRAY, TypedArrayConstructor;
if (!descriptors) { return; }
if (objectSetPrototypeOf) {
if (forced) { for (ARRAY in TypedArrayConstructorsList) {
TypedArrayConstructor = global_1[ARRAY];
2021-10-29 14:30:00 +08:00
if (TypedArrayConstructor && hasOwnProperty_1(TypedArrayConstructor, KEY)) { try {
delete TypedArrayConstructor[KEY];
} catch (error) { /* empty */ } }
} }
if (!TypedArray[KEY] || forced) {
// V8 ~ Chrome 49-50 `%TypedArray%` methods are non-writable non-configurable
try {
return redefine(TypedArray, KEY, forced ? property : NATIVE_ARRAY_BUFFER_VIEWS$2 && TypedArray[KEY] || property);
} catch (error$1) { /* empty */ }
} else { return; }
2021-09-22 10:28:02 +08:00
}
for (ARRAY in TypedArrayConstructorsList) {
TypedArrayConstructor = global_1[ARRAY];
if (TypedArrayConstructor && (!TypedArrayConstructor[KEY] || forced)) {
redefine(TypedArrayConstructor, KEY, property);
}
}
};
2020-01-17 14:55:39 +08:00
for (NAME$1 in TypedArrayConstructorsList) {
2021-10-29 14:30:00 +08:00
Constructor = global_1[NAME$1];
Prototype = Constructor && Constructor.prototype;
if (Prototype) { createNonEnumerableProperty(Prototype, TYPED_ARRAY_CONSTRUCTOR$1, Constructor); }
else { NATIVE_ARRAY_BUFFER_VIEWS$2 = false; }
}
for (NAME$1 in BigIntArrayConstructorsList) {
Constructor = global_1[NAME$1];
Prototype = Constructor && Constructor.prototype;
if (Prototype) { createNonEnumerableProperty(Prototype, TYPED_ARRAY_CONSTRUCTOR$1, Constructor); }
}
2020-01-17 14:55:39 +08:00
// WebKit bug - typed arrays constructors prototype is Object.prototype
2021-10-29 14:30:00 +08:00
if (!NATIVE_ARRAY_BUFFER_VIEWS$2 || !isCallable(TypedArray) || TypedArray === Function.prototype) {
// eslint-disable-next-line no-shadow -- safe
TypedArray = function TypedArray() {
2021-10-29 14:30:00 +08:00
throw TypeError$p('Incorrect invocation');
};
if (NATIVE_ARRAY_BUFFER_VIEWS$2) { for (NAME$1 in TypedArrayConstructorsList) {
if (global_1[NAME$1]) { objectSetPrototypeOf(global_1[NAME$1], TypedArray); }
} }
}
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
if (!NATIVE_ARRAY_BUFFER_VIEWS$2 || !TypedArrayPrototype || TypedArrayPrototype === ObjectPrototype$1) {
TypedArrayPrototype = TypedArray.prototype;
if (NATIVE_ARRAY_BUFFER_VIEWS$2) { for (NAME$1 in TypedArrayConstructorsList) {
if (global_1[NAME$1]) { objectSetPrototypeOf(global_1[NAME$1].prototype, TypedArrayPrototype); }
} }
}
2020-01-17 14:55:39 +08:00
// WebKit bug - one more object in Uint8ClampedArray prototype chain
if (NATIVE_ARRAY_BUFFER_VIEWS$2 && objectGetPrototypeOf(Uint8ClampedArrayPrototype) !== TypedArrayPrototype) {
objectSetPrototypeOf(Uint8ClampedArrayPrototype, TypedArrayPrototype);
}
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
if (descriptors && !hasOwnProperty_1(TypedArrayPrototype, TO_STRING_TAG$5)) {
TYPED_ARRAY_TAG_REQIRED = true;
2021-10-29 14:30:00 +08:00
defineProperty$a(TypedArrayPrototype, TO_STRING_TAG$5, { get: function () {
return isObject(this) ? this[TYPED_ARRAY_TAG] : undefined;
} });
for (NAME$1 in TypedArrayConstructorsList) { if (global_1[NAME$1]) {
createNonEnumerableProperty(global_1[NAME$1], TYPED_ARRAY_TAG, NAME$1);
} }
}
2020-01-17 14:55:39 +08:00
var arrayBufferViewCore = {
NATIVE_ARRAY_BUFFER_VIEWS: NATIVE_ARRAY_BUFFER_VIEWS$2,
2021-10-29 14:30:00 +08:00
TYPED_ARRAY_CONSTRUCTOR: TYPED_ARRAY_CONSTRUCTOR$1,
TYPED_ARRAY_TAG: TYPED_ARRAY_TAG_REQIRED && TYPED_ARRAY_TAG,
2021-10-29 14:30:00 +08:00
aTypedArray: aTypedArray$t,
aTypedArrayConstructor: aTypedArrayConstructor$4,
exportTypedArrayMethod: exportTypedArrayMethod$u,
exportTypedArrayStaticMethod: exportTypedArrayStaticMethod$3,
isView: isView,
isTypedArray: isTypedArray,
TypedArray: TypedArray,
TypedArrayPrototype: TypedArrayPrototype
2021-02-19 17:33:10 +08:00
};
2020-01-17 14:55:39 +08:00
var NATIVE_ARRAY_BUFFER_VIEWS$1 = arrayBufferViewCore.NATIVE_ARRAY_BUFFER_VIEWS;
2020-01-17 14:55:39 +08:00
// `ArrayBuffer.isView` method
// https://tc39.es/ecma262/#sec-arraybuffer.isview
_export({ target: 'ArrayBuffer', stat: true, forced: !NATIVE_ARRAY_BUFFER_VIEWS$1 }, {
isView: arrayBufferViewCore.isView
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var TypeError$o = global_1.TypeError;
// `Assert: IsConstructor(argument) is true`
var aConstructor = function (argument) {
if (isConstructor(argument)) { return argument; }
throw TypeError$o(tryToString(argument) + ' is not a constructor');
};
var SPECIES$2 = wellKnownSymbol('species');
2020-01-17 14:55:39 +08:00
// `SpeciesConstructor` abstract operation
// https://tc39.es/ecma262/#sec-speciesconstructor
var speciesConstructor = function (O, defaultConstructor) {
var C = anObject(O).constructor;
var S;
2021-10-29 14:30:00 +08:00
return C === undefined || (S = anObject(C)[SPECIES$2]) == undefined ? defaultConstructor : aConstructor(S);
2021-02-19 17:33:10 +08:00
};
2020-01-17 14:55:39 +08:00
var ArrayBuffer$2 = arrayBuffer.ArrayBuffer;
var DataView$1 = arrayBuffer.DataView;
2021-10-29 14:30:00 +08:00
var DataViewPrototype = DataView$1.prototype;
var un$ArrayBufferSlice = functionUncurryThis(ArrayBuffer$2.prototype.slice);
var getUint8 = functionUncurryThis(DataViewPrototype.getUint8);
var setUint8 = functionUncurryThis(DataViewPrototype.setUint8);
2020-01-17 14:55:39 +08:00
var INCORRECT_SLICE = fails(function () {
return !new ArrayBuffer$2(2).slice(1, undefined).byteLength;
2021-02-19 17:33:10 +08:00
});
2020-01-17 14:55:39 +08:00
// `ArrayBuffer.prototype.slice` method
// https://tc39.es/ecma262/#sec-arraybuffer.prototype.slice
_export({ target: 'ArrayBuffer', proto: true, unsafe: true, forced: INCORRECT_SLICE }, {
slice: function slice(start, end) {
2021-10-29 14:30:00 +08:00
if (un$ArrayBufferSlice && end === undefined) {
return un$ArrayBufferSlice(anObject(this), start); // FF fix
}
var length = anObject(this).byteLength;
var first = toAbsoluteIndex(start, length);
var fin = toAbsoluteIndex(end === undefined ? length : end, length);
var result = new (speciesConstructor(this, ArrayBuffer$2))(toLength(fin - first));
var viewSource = new DataView$1(this);
var viewTarget = new DataView$1(result);
var index = 0;
while (first < fin) {
2021-10-29 14:30:00 +08:00
setUint8(viewTarget, index++, getUint8(viewSource, first++));
} return result;
2021-09-01 10:47:40 +08:00
}
2020-01-17 14:55:39 +08:00
});
// `DataView` constructor
// https://tc39.es/ecma262/#sec-dataview-constructor
_export({ global: true, forced: !arrayBufferNative }, {
DataView: arrayBuffer.DataView
2020-01-17 14:55:39 +08:00
});
2021-10-29 14:30:00 +08:00
var FORCED$n = fails(function () {
return new Date(16e11).getYear() !== 120;
});
var getFullYear = functionUncurryThis(Date.prototype.getFullYear);
// `Date.prototype.getYear` method
// https://tc39.es/ecma262/#sec-date.prototype.getyear
_export({ target: 'Date', proto: true, forced: FORCED$n }, {
getYear: function getYear() {
return getFullYear(this) - 1900;
}
});
var Date$1 = global_1.Date;
var getTime$3 = functionUncurryThis(Date$1.prototype.getTime);
// `Date.now` method
// https://tc39.es/ecma262/#sec-date.now
_export({ target: 'Date', stat: true }, {
now: function now() {
2021-10-29 14:30:00 +08:00
return getTime$3(new Date$1());
}
});
var DatePrototype$3 = Date.prototype;
var getTime$2 = functionUncurryThis(DatePrototype$3.getTime);
var setFullYear = functionUncurryThis(DatePrototype$3.setFullYear);
// `Date.prototype.setYear` method
// https://tc39.es/ecma262/#sec-date.prototype.setyear
_export({ target: 'Date', proto: true }, {
setYear: function setYear(year) {
// validate
getTime$2(this);
var yi = toIntegerOrInfinity(year);
var yyyy = 0 <= yi && yi <= 99 ? yi + 1900 : yi;
return setFullYear(this, yyyy);
2021-09-01 10:47:40 +08:00
}
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
// `Date.prototype.toGMTString` method
// https://tc39.es/ecma262/#sec-date.prototype.togmtstring
_export({ target: 'Date', proto: true }, {
toGMTString: Date.prototype.toUTCString
});
var RangeError$9 = global_1.RangeError;
// `String.prototype.repeat` method implementation
// https://tc39.es/ecma262/#sec-string.prototype.repeat
var stringRepeat = function repeat(count) {
2021-10-29 14:30:00 +08:00
var str = toString_1(requireObjectCoercible(this));
var result = '';
2021-10-29 14:30:00 +08:00
var n = toIntegerOrInfinity(count);
if (n < 0 || n == Infinity) { throw RangeError$9('Wrong number of repetitions'); }
for (;n > 0; (n >>>= 1) && (str += str)) { if (n & 1) { result += str; } }
return result;
};
2020-01-17 14:55:39 +08:00
// https://github.com/tc39/proposal-string-pad-start-end
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var repeat$1 = functionUncurryThis(stringRepeat);
var stringSlice$e = functionUncurryThis(''.slice);
var ceil$1 = Math.ceil;
2020-01-17 14:55:39 +08:00
// `String.prototype.{ padStart, padEnd }` methods implementation
var createMethod$5 = function (IS_END) {
return function ($this, maxLength, fillString) {
2021-10-29 14:30:00 +08:00
var S = toString_1(requireObjectCoercible($this));
var intMaxLength = toLength(maxLength);
2021-10-29 14:30:00 +08:00
var stringLength = S.length;
var fillStr = fillString === undefined ? ' ' : toString_1(fillString);
var fillLen, stringFiller;
if (intMaxLength <= stringLength || fillStr == '') { return S; }
fillLen = intMaxLength - stringLength;
2021-10-29 14:30:00 +08:00
stringFiller = repeat$1(fillStr, ceil$1(fillLen / fillStr.length));
if (stringFiller.length > fillLen) { stringFiller = stringSlice$e(stringFiller, 0, fillLen); }
return IS_END ? S + stringFiller : stringFiller + S;
};
2021-09-01 10:47:40 +08:00
};
2020-01-17 14:55:39 +08:00
var stringPad = {
// `String.prototype.padStart` method
// https://tc39.es/ecma262/#sec-string.prototype.padstart
start: createMethod$5(false),
// `String.prototype.padEnd` method
// https://tc39.es/ecma262/#sec-string.prototype.padend
end: createMethod$5(true)
};
2020-01-17 14:55:39 +08:00
var padStart = stringPad.start;
2021-09-01 10:47:40 +08:00
2021-10-29 14:30:00 +08:00
var RangeError$8 = global_1.RangeError;
var abs$6 = Math.abs;
var DatePrototype$2 = Date.prototype;
2021-10-29 14:30:00 +08:00
var n$DateToISOString = DatePrototype$2.toISOString;
var getTime$1 = functionUncurryThis(DatePrototype$2.getTime);
var getUTCDate = functionUncurryThis(DatePrototype$2.getUTCDate);
var getUTCFullYear = functionUncurryThis(DatePrototype$2.getUTCFullYear);
var getUTCHours = functionUncurryThis(DatePrototype$2.getUTCHours);
var getUTCMilliseconds = functionUncurryThis(DatePrototype$2.getUTCMilliseconds);
var getUTCMinutes = functionUncurryThis(DatePrototype$2.getUTCMinutes);
var getUTCMonth = functionUncurryThis(DatePrototype$2.getUTCMonth);
var getUTCSeconds = functionUncurryThis(DatePrototype$2.getUTCSeconds);
2020-01-17 14:55:39 +08:00
// `Date.prototype.toISOString` method implementation
// https://tc39.es/ecma262/#sec-date.prototype.toisostring
// PhantomJS / old WebKit fails here:
var dateToIsoString = (fails(function () {
2021-10-29 14:30:00 +08:00
return n$DateToISOString.call(new Date(-5e13 - 1)) != '0385-07-25T07:06:39.999Z';
}) || !fails(function () {
2021-10-29 14:30:00 +08:00
n$DateToISOString.call(new Date(NaN));
})) ? function toISOString() {
2021-10-29 14:30:00 +08:00
if (!isFinite(getTime$1(this))) { throw RangeError$8('Invalid time value'); }
var date = this;
2021-10-29 14:30:00 +08:00
var year = getUTCFullYear(date);
var milliseconds = getUTCMilliseconds(date);
var sign = year < 0 ? '-' : year > 9999 ? '+' : '';
return sign + padStart(abs$6(year), sign ? 6 : 4, 0) +
2021-10-29 14:30:00 +08:00
'-' + padStart(getUTCMonth(date) + 1, 2, 0) +
'-' + padStart(getUTCDate(date), 2, 0) +
'T' + padStart(getUTCHours(date), 2, 0) +
':' + padStart(getUTCMinutes(date), 2, 0) +
':' + padStart(getUTCSeconds(date), 2, 0) +
'.' + padStart(milliseconds, 3, 0) +
'Z';
2021-10-29 14:30:00 +08:00
} : n$DateToISOString;
2021-09-01 10:47:40 +08:00
// `Date.prototype.toISOString` method
// https://tc39.es/ecma262/#sec-date.prototype.toisostring
// PhantomJS / old WebKit has a broken implementations
_export({ target: 'Date', proto: true, forced: Date.prototype.toISOString !== dateToIsoString }, {
toISOString: dateToIsoString
2021-02-19 17:33:10 +08:00
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var FORCED$m = fails(function () {
return new Date(NaN).toJSON() !== null
|| Date.prototype.toJSON.call({ toISOString: function () { return 1; } }) !== 1;
2021-09-01 10:47:40 +08:00
});
2020-01-17 14:55:39 +08:00
// `Date.prototype.toJSON` method
// https://tc39.es/ecma262/#sec-date.prototype.tojson
2021-10-29 14:30:00 +08:00
_export({ target: 'Date', proto: true, forced: FORCED$m }, {
// eslint-disable-next-line no-unused-vars -- required for `.length`
toJSON: function toJSON(key) {
var O = toObject(this);
2021-10-29 14:30:00 +08:00
var pv = toPrimitive(O, 'number');
return typeof pv == 'number' && !isFinite(pv) ? null : O.toISOString();
2021-09-01 10:47:40 +08:00
}
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var TypeError$n = global_1.TypeError;
// `Date.prototype[@@toPrimitive](hint)` method implementation
// https://tc39.es/ecma262/#sec-date.prototype-@@toprimitive
var dateToPrimitive = function (hint) {
2021-10-29 14:30:00 +08:00
anObject(this);
if (hint === 'string' || hint === 'default') { hint = 'string'; }
else if (hint !== 'number') { throw TypeError$n('Incorrect hint'); }
return ordinaryToPrimitive(this, hint);
};
2020-01-17 14:55:39 +08:00
var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
var DatePrototype$1 = Date.prototype;
2020-01-17 14:55:39 +08:00
// `Date.prototype[@@toPrimitive]` method
// https://tc39.es/ecma262/#sec-date.prototype-@@toprimitive
2021-10-29 14:30:00 +08:00
if (!hasOwnProperty_1(DatePrototype$1, TO_PRIMITIVE)) {
redefine(DatePrototype$1, TO_PRIMITIVE, dateToPrimitive);
}
2020-01-17 14:55:39 +08:00
var DatePrototype = Date.prototype;
var INVALID_DATE = 'Invalid Date';
var TO_STRING$1 = 'toString';
2021-10-29 14:30:00 +08:00
var un$DateToString = functionUncurryThis(DatePrototype[TO_STRING$1]);
var getTime = functionUncurryThis(DatePrototype.getTime);
2020-01-17 14:55:39 +08:00
// `Date.prototype.toString` method
// https://tc39.es/ecma262/#sec-date.prototype.tostring
2021-10-29 14:30:00 +08:00
if (String(new Date(NaN)) != INVALID_DATE) {
redefine(DatePrototype, TO_STRING$1, function toString() {
2021-10-29 14:30:00 +08:00
var value = getTime(this);
// eslint-disable-next-line no-self-compare -- NaN check
2021-10-29 14:30:00 +08:00
return value === value ? un$DateToString(this) : INVALID_DATE;
});
}
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var charAt$f = functionUncurryThis(''.charAt);
var charCodeAt$4 = functionUncurryThis(''.charCodeAt);
var exec$8 = functionUncurryThis(/./.exec);
var numberToString$3 = functionUncurryThis(1.0.toString);
var toUpperCase = functionUncurryThis(''.toUpperCase);
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var raw = /[\w*+\-./@]/;
var hex$1 = function (code, length) {
var result = numberToString$3(code, 16);
while (result.length < length) { result = '0' + result; }
return result;
};
// `escape` method
// https://tc39.es/ecma262/#sec-escape-string
_export({ global: true }, {
escape: function escape(string) {
var str = toString_1(string);
var result = '';
var length = str.length;
var index = 0;
var chr, code;
while (index < length) {
chr = charAt$f(str, index++);
if (exec$8(raw, chr)) {
result += chr;
} else {
code = charCodeAt$4(chr, 0);
if (code < 256) {
result += '%' + hex$1(code, 2);
} else {
result += '%u' + toUpperCase(hex$1(code, 4));
}
}
} return result;
}
});
var Function$3 = global_1.Function;
var concat$3 = functionUncurryThis([].concat);
var join$6 = functionUncurryThis([].join);
var factories = {};
var construct = function (C, argsLength, args) {
if (!hasOwnProperty_1(factories, argsLength)) {
for (var list = [], i = 0; i < argsLength; i++) { list[i] = 'a[' + i + ']'; }
factories[argsLength] = Function$3('C,a', 'return new C(' + join$6(list, ',') + ')');
} return factories[argsLength](C, args);
};
2020-01-17 14:55:39 +08:00
// `Function.prototype.bind` method implementation
// https://tc39.es/ecma262/#sec-function.prototype.bind
2021-10-29 14:30:00 +08:00
var functionBind = Function$3.bind || function bind(that /* , ...args */) {
var F = aCallable(this);
var Prototype = F.prototype;
var partArgs = arraySlice$1(arguments, 1);
var boundFunction = function bound(/* args... */) {
2021-10-29 14:30:00 +08:00
var args = concat$3(partArgs, arraySlice$1(arguments));
return this instanceof boundFunction ? construct(F, args.length, args) : F.apply(that, args);
};
2021-10-29 14:30:00 +08:00
if (isObject(Prototype)) { boundFunction.prototype = Prototype; }
return boundFunction;
};
2020-01-17 14:55:39 +08:00
// `Function.prototype.bind` method
// https://tc39.es/ecma262/#sec-function.prototype.bind
_export({ target: 'Function', proto: true }, {
bind: functionBind
});
var HAS_INSTANCE = wellKnownSymbol('hasInstance');
var FunctionPrototype$1 = Function.prototype;
2020-01-17 14:55:39 +08:00
// `Function.prototype[@@hasInstance]` method
// https://tc39.es/ecma262/#sec-function.prototype-@@hasinstance
if (!(HAS_INSTANCE in FunctionPrototype$1)) {
objectDefineProperty.f(FunctionPrototype$1, HAS_INSTANCE, { value: function (O) {
2021-10-29 14:30:00 +08:00
if (!isCallable(this) || !isObject(O)) { return false; }
var P = this.prototype;
if (!isObject(P)) { return O instanceof this; }
// for environment w/o native `@@hasInstance` logic enough `instanceof`, but add this:
2021-10-29 14:30:00 +08:00
while (O = objectGetPrototypeOf(O)) { if (P === O) { return true; } }
return false;
} });
}
2021-10-29 14:30:00 +08:00
var FUNCTION_NAME_EXISTS = functionName.EXISTS;
var defineProperty$9 = objectDefineProperty.f;
var FunctionPrototype = Function.prototype;
2021-10-29 14:30:00 +08:00
var functionToString = functionUncurryThis(FunctionPrototype.toString);
var nameRE = /^\s*function ([^ (]*)/;
2021-10-29 14:30:00 +08:00
var regExpExec = functionUncurryThis(nameRE.exec);
var NAME = 'name';
2020-01-17 14:55:39 +08:00
// Function instances `.name` property
// https://tc39.es/ecma262/#sec-function-instances-name
2021-10-29 14:30:00 +08:00
if (descriptors && !FUNCTION_NAME_EXISTS) {
defineProperty$9(FunctionPrototype, NAME, {
configurable: true,
get: function () {
try {
2021-10-29 14:30:00 +08:00
return regExpExec(nameRE, functionToString(this))[1];
} catch (error) {
return '';
}
}
});
}
2020-01-17 14:55:39 +08:00
// `globalThis` object
// https://tc39.es/ecma262/#sec-globalthis
_export({ global: true }, {
globalThis: global_1
});
2021-02-19 17:33:10 +08:00
2021-10-29 14:30:00 +08:00
var Array$4 = global_1.Array;
var $stringify = getBuiltIn('JSON', 'stringify');
2021-10-29 14:30:00 +08:00
var exec$7 = functionUncurryThis(/./.exec);
var charAt$e = functionUncurryThis(''.charAt);
var charCodeAt$3 = functionUncurryThis(''.charCodeAt);
var replace$8 = functionUncurryThis(''.replace);
var numberToString$2 = functionUncurryThis(1.0.toString);
var tester = /[\uD800-\uDFFF]/g;
var low = /^[\uD800-\uDBFF]$/;
var hi = /^[\uDC00-\uDFFF]$/;
2020-01-17 14:55:39 +08:00
var fix = function (match, offset, string) {
2021-10-29 14:30:00 +08:00
var prev = charAt$e(string, offset - 1);
var next = charAt$e(string, offset + 1);
if ((exec$7(low, match) && !exec$7(hi, next)) || (exec$7(hi, match) && !exec$7(low, prev))) {
return '\\u' + numberToString$2(charCodeAt$3(match, 0), 16);
} return match;
};
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
var FORCED$l = fails(function () {
return $stringify('\uDF06\uD834') !== '"\\udf06\\ud834"'
|| $stringify('\uDEAD') !== '"\\udead"';
});
if ($stringify) {
// `JSON.stringify` method
// https://tc39.es/ecma262/#sec-json.stringify
// https://github.com/tc39/proposal-well-formed-stringify
2021-10-29 14:30:00 +08:00
_export({ target: 'JSON', stat: true, forced: FORCED$l }, {
// eslint-disable-next-line no-unused-vars -- required for `.length`
stringify: function stringify(it, replacer, space) {
2021-10-29 14:30:00 +08:00
var arguments$1 = arguments;
for (var i = 0, l = arguments.length, args = Array$4(l); i < l; i++) { args[i] = arguments$1[i]; }
var result = functionApply($stringify, null, args);
return typeof result == 'string' ? replace$8(result, tester, fix) : result;
2021-09-01 10:47:40 +08:00
}
});
}
2020-01-17 14:55:39 +08:00
// JSON[@@toStringTag] property
// https://tc39.es/ecma262/#sec-json-@@tostringtag
setToStringTag(global_1.JSON, 'JSON', true);
2020-01-17 14:55:39 +08:00
var freezing = !fails(function () {
// eslint-disable-next-line es/no-object-isextensible, es/no-object-preventextensions -- required for testing
return Object.isExtensible(Object.preventExtensions({}));
});
2020-01-17 14:55:39 +08:00
var internalMetadata = createCommonjsModule(function (module) {
var defineProperty = objectDefineProperty.f;
2020-01-17 14:55:39 +08:00
2021-09-01 10:47:40 +08:00
2021-10-29 14:30:00 +08:00
var REQUIRED = false;
var METADATA = uid('meta');
var id = 0;
2021-09-01 10:47:40 +08:00
// eslint-disable-next-line es/no-object-isextensible -- safe
var isExtensible = Object.isExtensible || function () {
return true;
2021-05-12 15:34:21 +08:00
};
2020-01-17 14:55:39 +08:00
var setMetadata = function (it) {
defineProperty(it, METADATA, { value: {
2021-10-29 14:30:00 +08:00
objectID: 'O' + id++, // object ID
weakData: {} // weak collections IDs
} });
2021-05-12 15:34:21 +08:00
};
2020-01-17 14:55:39 +08:00
var fastKey = function (it, create) {
// return a primitive with prefix
if (!isObject(it)) { return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it; }
2021-10-29 14:30:00 +08:00
if (!hasOwnProperty_1(it, METADATA)) {
// can't set metadata to uncaught frozen object
if (!isExtensible(it)) { return 'F'; }
// not necessary to add metadata
if (!create) { return 'E'; }
// add missing metadata
setMetadata(it);
// return object ID
} return it[METADATA].objectID;
};
var getWeakData = function (it, create) {
2021-10-29 14:30:00 +08:00
if (!hasOwnProperty_1(it, METADATA)) {
// can't set metadata to uncaught frozen object
if (!isExtensible(it)) { return true; }
// not necessary to add metadata
if (!create) { return false; }
// add missing metadata
setMetadata(it);
// return the store of weak collections IDs
} return it[METADATA].weakData;
};
// add metadata on freeze-family methods calling
var onFreeze = function (it) {
2021-10-29 14:30:00 +08:00
if (freezing && REQUIRED && isExtensible(it) && !hasOwnProperty_1(it, METADATA)) { setMetadata(it); }
return it;
2021-09-22 10:28:02 +08:00
};
2021-09-01 10:47:40 +08:00
2021-10-29 14:30:00 +08:00
var enable = function () {
meta.enable = function () { /* empty */ };
REQUIRED = true;
var getOwnPropertyNames = objectGetOwnPropertyNames.f;
var splice = functionUncurryThis([].splice);
var test = {};
test[METADATA] = 1;
// prevent exposing of metadata key
if (getOwnPropertyNames(test).length) {
objectGetOwnPropertyNames.f = function (it) {
var result = getOwnPropertyNames(it);
for (var i = 0, length = result.length; i < length; i++) {
if (result[i] === METADATA) {
splice(result, i, 1);
break;
}
} return result;
};
_export({ target: 'Object', stat: true, forced: true }, {
getOwnPropertyNames: objectGetOwnPropertyNamesExternal.f
});
}
};
var meta = module.exports = {
2021-10-29 14:30:00 +08:00
enable: enable,
fastKey: fastKey,
getWeakData: getWeakData,
onFreeze: onFreeze
2020-01-17 14:55:39 +08:00
};
hiddenKeys$1[METADATA] = true;
});
// makes subclassing work correct for wrapped built-ins
var inheritIfRequired = function ($this, dummy, Wrapper) {
var NewTarget, NewTargetPrototype;
if (
// it can work only with native `setPrototypeOf`
objectSetPrototypeOf &&
// we haven't completely correct pre-ES6 way for getting `new.target`, so use this
2021-10-29 14:30:00 +08:00
isCallable(NewTarget = dummy.constructor) &&
NewTarget !== Wrapper &&
isObject(NewTargetPrototype = NewTarget.prototype) &&
NewTargetPrototype !== Wrapper.prototype
) { objectSetPrototypeOf($this, NewTargetPrototype); }
return $this;
2020-01-17 14:55:39 +08:00
};
var collection = function (CONSTRUCTOR_NAME, wrapper, common) {
var IS_MAP = CONSTRUCTOR_NAME.indexOf('Map') !== -1;
var IS_WEAK = CONSTRUCTOR_NAME.indexOf('Weak') !== -1;
var ADDER = IS_MAP ? 'set' : 'add';
var NativeConstructor = global_1[CONSTRUCTOR_NAME];
var NativePrototype = NativeConstructor && NativeConstructor.prototype;
var Constructor = NativeConstructor;
var exported = {};
2020-01-17 14:55:39 +08:00
var fixMethod = function (KEY) {
2021-10-29 14:30:00 +08:00
var uncurriedNativeMethod = functionUncurryThis(NativePrototype[KEY]);
redefine(NativePrototype, KEY,
KEY == 'add' ? function add(value) {
2021-10-29 14:30:00 +08:00
uncurriedNativeMethod(this, value === 0 ? 0 : value);
return this;
} : KEY == 'delete' ? function (key) {
2021-10-29 14:30:00 +08:00
return IS_WEAK && !isObject(key) ? false : uncurriedNativeMethod(this, key === 0 ? 0 : key);
} : KEY == 'get' ? function get(key) {
2021-10-29 14:30:00 +08:00
return IS_WEAK && !isObject(key) ? undefined : uncurriedNativeMethod(this, key === 0 ? 0 : key);
} : KEY == 'has' ? function has(key) {
2021-10-29 14:30:00 +08:00
return IS_WEAK && !isObject(key) ? false : uncurriedNativeMethod(this, key === 0 ? 0 : key);
} : function set(key, value) {
2021-10-29 14:30:00 +08:00
uncurriedNativeMethod(this, key === 0 ? 0 : key, value);
return this;
}
);
};
2020-01-17 14:55:39 +08:00
var REPLACE = isForced_1(
CONSTRUCTOR_NAME,
2021-10-29 14:30:00 +08:00
!isCallable(NativeConstructor) || !(IS_WEAK || NativePrototype.forEach && !fails(function () {
new NativeConstructor().entries().next();
}))
);
2020-01-17 14:55:39 +08:00
if (REPLACE) {
// create collection constructor
Constructor = common.getConstructor(wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER);
2021-10-29 14:30:00 +08:00
internalMetadata.enable();
} else if (isForced_1(CONSTRUCTOR_NAME, true)) {
var instance = new Constructor();
// early implementations not supports chaining
var HASNT_CHAINING = instance[ADDER](IS_WEAK ? {} : -0, 1) != instance;
// V8 ~ Chromium 40- weak-collections throws on primitives, but should return false
var THROWS_ON_PRIMITIVES = fails(function () { instance.has(1); });
// most early implementations doesn't supports iterables, most modern - not close it correctly
// eslint-disable-next-line no-new -- required for testing
var ACCEPT_ITERABLES = checkCorrectnessOfIteration(function (iterable) { new NativeConstructor(iterable); });
// for early implementations -0 and +0 not the same
var BUGGY_ZERO = !IS_WEAK && fails(function () {
// V8 ~ Chromium 42- fails only with 5+ elements
var $instance = new NativeConstructor();
var index = 5;
while (index--) { $instance[ADDER](index, index); }
return !$instance.has(-0);
});
2020-01-17 14:55:39 +08:00
if (!ACCEPT_ITERABLES) {
Constructor = wrapper(function (dummy, iterable) {
2021-10-29 14:30:00 +08:00
anInstance(dummy, NativePrototype);
var that = inheritIfRequired(new NativeConstructor(), dummy, Constructor);
if (iterable != undefined) { iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP }); }
return that;
});
Constructor.prototype = NativePrototype;
NativePrototype.constructor = Constructor;
}
2020-01-17 14:55:39 +08:00
if (THROWS_ON_PRIMITIVES || BUGGY_ZERO) {
fixMethod('delete');
fixMethod('has');
IS_MAP && fixMethod('get');
}
2021-09-01 10:47:40 +08:00
if (BUGGY_ZERO || HASNT_CHAINING) { fixMethod(ADDER); }
2020-01-17 14:55:39 +08:00
// weak collections should not contains .clear method
if (IS_WEAK && NativePrototype.clear) { delete NativePrototype.clear; }
2021-09-01 10:47:40 +08:00
}
2020-01-17 14:55:39 +08:00
exported[CONSTRUCTOR_NAME] = Constructor;
_export({ global: true, forced: Constructor != NativeConstructor }, exported);
2021-09-01 10:47:40 +08:00
setToStringTag(Constructor, CONSTRUCTOR_NAME);
2021-09-01 10:47:40 +08:00
if (!IS_WEAK) { common.setStrong(Constructor, CONSTRUCTOR_NAME, IS_MAP); }
return Constructor;
2020-01-17 14:55:39 +08:00
};
2021-10-29 14:30:00 +08:00
var defineProperty$8 = objectDefineProperty.f;
2020-01-17 14:55:39 +08:00
var fastKey = internalMetadata.fastKey;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var setInternalState$e = internalState.set;
var internalStateGetterFor$1 = internalState.getterFor;
var collectionStrong = {
getConstructor: function (wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER) {
2021-10-29 14:30:00 +08:00
var Constructor = wrapper(function (that, iterable) {
anInstance(that, Prototype);
setInternalState$e(that, {
type: CONSTRUCTOR_NAME,
index: objectCreate(null),
first: undefined,
last: undefined,
size: 0
2020-01-17 14:55:39 +08:00
});
if (!descriptors) { that.size = 0; }
if (iterable != undefined) { iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP }); }
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var Prototype = Constructor.prototype;
var getInternalState = internalStateGetterFor$1(CONSTRUCTOR_NAME);
2020-01-17 14:55:39 +08:00
var define = function (that, key, value) {
var state = getInternalState(that);
var entry = getEntry(that, key);
var previous, index;
// change existing entry
if (entry) {
entry.value = value;
// create new entry
} else {
state.last = entry = {
index: index = fastKey(key, true),
key: key,
value: value,
previous: previous = state.last,
next: undefined,
removed: false
};
if (!state.first) { state.first = entry; }
if (previous) { previous.next = entry; }
if (descriptors) { state.size++; }
else { that.size++; }
// add to index
if (index !== 'F') { state.index[index] = entry; }
} return that;
};
2021-09-01 10:47:40 +08:00
var getEntry = function (that, key) {
var state = getInternalState(that);
// fast case
var index = fastKey(key);
var entry;
if (index !== 'F') { return state.index[index]; }
// frozen object case
for (entry = state.first; entry; entry = entry.next) {
if (entry.key == key) { return entry; }
}
};
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
redefineAll(Prototype, {
// `{ Map, Set }.prototype.clear()` methods
// https://tc39.es/ecma262/#sec-map.prototype.clear
// https://tc39.es/ecma262/#sec-set.prototype.clear
clear: function clear() {
var that = this;
var state = getInternalState(that);
var data = state.index;
var entry = state.first;
while (entry) {
entry.removed = true;
if (entry.previous) { entry.previous = entry.previous.next = undefined; }
delete data[entry.index];
entry = entry.next;
}
state.first = state.last = undefined;
if (descriptors) { state.size = 0; }
else { that.size = 0; }
},
// `{ Map, Set }.prototype.delete(key)` methods
// https://tc39.es/ecma262/#sec-map.prototype.delete
// https://tc39.es/ecma262/#sec-set.prototype.delete
'delete': function (key) {
var that = this;
var state = getInternalState(that);
var entry = getEntry(that, key);
if (entry) {
var next = entry.next;
var prev = entry.previous;
delete state.index[entry.index];
entry.removed = true;
if (prev) { prev.next = next; }
if (next) { next.previous = prev; }
if (state.first == entry) { state.first = next; }
if (state.last == entry) { state.last = prev; }
if (descriptors) { state.size--; }
else { that.size--; }
} return !!entry;
},
// `{ Map, Set }.prototype.forEach(callbackfn, thisArg = undefined)` methods
// https://tc39.es/ecma262/#sec-map.prototype.foreach
// https://tc39.es/ecma262/#sec-set.prototype.foreach
forEach: function forEach(callbackfn /* , that = undefined */) {
var state = getInternalState(this);
2021-10-29 14:30:00 +08:00
var boundFunction = functionBindContext(callbackfn, arguments.length > 1 ? arguments[1] : undefined);
var entry;
while (entry = entry ? entry.next : state.first) {
boundFunction(entry.value, entry.key, this);
// revert to the last existing entry
while (entry && entry.removed) { entry = entry.previous; }
}
},
// `{ Map, Set}.prototype.has(key)` methods
// https://tc39.es/ecma262/#sec-map.prototype.has
// https://tc39.es/ecma262/#sec-set.prototype.has
has: function has(key) {
return !!getEntry(this, key);
}
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
redefineAll(Prototype, IS_MAP ? {
// `Map.prototype.get(key)` method
// https://tc39.es/ecma262/#sec-map.prototype.get
get: function get(key) {
var entry = getEntry(this, key);
return entry && entry.value;
},
// `Map.prototype.set(key, value)` method
// https://tc39.es/ecma262/#sec-map.prototype.set
set: function set(key, value) {
return define(this, key === 0 ? 0 : key, value);
}
} : {
// `Set.prototype.add(value)` method
// https://tc39.es/ecma262/#sec-set.prototype.add
add: function add(value) {
return define(this, value = value === 0 ? 0 : value, value);
}
});
2021-10-29 14:30:00 +08:00
if (descriptors) { defineProperty$8(Prototype, 'size', {
get: function () {
return getInternalState(this).size;
}
}); }
2021-10-29 14:30:00 +08:00
return Constructor;
},
2021-10-29 14:30:00 +08:00
setStrong: function (Constructor, CONSTRUCTOR_NAME, IS_MAP) {
var ITERATOR_NAME = CONSTRUCTOR_NAME + ' Iterator';
var getInternalCollectionState = internalStateGetterFor$1(CONSTRUCTOR_NAME);
var getInternalIteratorState = internalStateGetterFor$1(ITERATOR_NAME);
// `{ Map, Set }.prototype.{ keys, values, entries, @@iterator }()` methods
// https://tc39.es/ecma262/#sec-map.prototype.entries
// https://tc39.es/ecma262/#sec-map.prototype.keys
// https://tc39.es/ecma262/#sec-map.prototype.values
// https://tc39.es/ecma262/#sec-map.prototype-@@iterator
// https://tc39.es/ecma262/#sec-set.prototype.entries
// https://tc39.es/ecma262/#sec-set.prototype.keys
// https://tc39.es/ecma262/#sec-set.prototype.values
// https://tc39.es/ecma262/#sec-set.prototype-@@iterator
2021-10-29 14:30:00 +08:00
defineIterator(Constructor, CONSTRUCTOR_NAME, function (iterated, kind) {
setInternalState$e(this, {
type: ITERATOR_NAME,
target: iterated,
state: getInternalCollectionState(iterated),
kind: kind,
last: undefined
});
}, function () {
var state = getInternalIteratorState(this);
var kind = state.kind;
var entry = state.last;
// revert to the last existing entry
while (entry && entry.removed) { entry = entry.previous; }
// get next entry
if (!state.target || !(state.last = entry = entry ? entry.next : state.state.first)) {
// or finish the iteration
state.target = undefined;
return { value: undefined, done: true };
}
// return step by kind
if (kind == 'keys') { return { value: entry.key, done: false }; }
if (kind == 'values') { return { value: entry.value, done: false }; }
return { value: [entry.key, entry.value], done: false };
}, IS_MAP ? 'entries' : 'values', !IS_MAP, true);
// `{ Map, Set }.prototype[@@species]` accessors
// https://tc39.es/ecma262/#sec-get-map-@@species
// https://tc39.es/ecma262/#sec-get-set-@@species
setSpecies(CONSTRUCTOR_NAME);
2021-09-01 10:47:40 +08:00
}
};
2020-01-17 14:55:39 +08:00
// `Map` constructor
// https://tc39.es/ecma262/#sec-map-objects
2021-10-29 14:30:00 +08:00
collection('Map', function (init) {
return function Map() { return init(this, arguments.length ? arguments[0] : undefined); };
}, collectionStrong);
2021-02-19 17:33:10 +08:00
var log$7 = Math.log;
2020-01-17 14:55:39 +08:00
// `Math.log1p` method implementation
// https://tc39.es/ecma262/#sec-math.log1p
// eslint-disable-next-line es/no-math-log1p -- safe
var mathLog1p = Math.log1p || function log1p(x) {
return (x = +x) > -1e-8 && x < 1e-8 ? x - x * x / 2 : log$7(1 + x);
};
2020-01-17 14:55:39 +08:00
// eslint-disable-next-line es/no-math-acosh -- required for testing
var $acosh = Math.acosh;
var log$6 = Math.log;
var sqrt$2 = Math.sqrt;
var LN2$1 = Math.LN2;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var FORCED$k = !$acosh
// V8 bug: https://code.google.com/p/v8/issues/detail?id=3509
|| Math.floor($acosh(Number.MAX_VALUE)) != 710
// Tor Browser bug: Math.acosh(Infinity) -> NaN
|| $acosh(Infinity) != Infinity;
2020-01-17 14:55:39 +08:00
// `Math.acosh` method
// https://tc39.es/ecma262/#sec-math.acosh
2021-10-29 14:30:00 +08:00
_export({ target: 'Math', stat: true, forced: FORCED$k }, {
acosh: function acosh(x) {
return (x = +x) < 1 ? NaN : x > 94906265.62425156
? log$6(x) + LN2$1
: mathLog1p(x - 1 + sqrt$2(x - 1) * sqrt$2(x + 1));
}
});
2020-01-17 14:55:39 +08:00
// eslint-disable-next-line es/no-math-asinh -- required for testing
var $asinh = Math.asinh;
var log$5 = Math.log;
var sqrt$1 = Math.sqrt;
2020-01-17 14:55:39 +08:00
function asinh(x) {
return !isFinite(x = +x) || x == 0 ? x : x < 0 ? -asinh(-x) : log$5(x + sqrt$1(x * x + 1));
}
2020-01-17 14:55:39 +08:00
// `Math.asinh` method
// https://tc39.es/ecma262/#sec-math.asinh
// Tor Browser bug: Math.asinh(0) -> -0
_export({ target: 'Math', stat: true, forced: !($asinh && 1 / $asinh(0) > 0) }, {
asinh: asinh
});
2020-01-17 14:55:39 +08:00
// eslint-disable-next-line es/no-math-atanh -- required for testing
var $atanh = Math.atanh;
var log$4 = Math.log;
2020-01-17 14:55:39 +08:00
// `Math.atanh` method
// https://tc39.es/ecma262/#sec-math.atanh
// Tor Browser bug: Math.atanh(-0) -> 0
_export({ target: 'Math', stat: true, forced: !($atanh && 1 / $atanh(-0) < 0) }, {
atanh: function atanh(x) {
return (x = +x) == 0 ? x : log$4((1 + x) / (1 - x)) / 2;
2021-09-22 10:28:02 +08:00
}
});
2020-01-17 14:55:39 +08:00
// `Math.sign` method implementation
// https://tc39.es/ecma262/#sec-math.sign
// eslint-disable-next-line es/no-math-sign -- safe
var mathSign = Math.sign || function sign(x) {
// eslint-disable-next-line no-self-compare -- NaN check
return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1;
};
2020-01-17 14:55:39 +08:00
var abs$5 = Math.abs;
var pow$3 = Math.pow;
2020-01-17 14:55:39 +08:00
// `Math.cbrt` method
// https://tc39.es/ecma262/#sec-math.cbrt
_export({ target: 'Math', stat: true }, {
cbrt: function cbrt(x) {
return mathSign(x = +x) * pow$3(abs$5(x), 1 / 3);
2021-09-22 10:28:02 +08:00
}
2020-01-17 14:55:39 +08:00
});
var floor$7 = Math.floor;
var log$3 = Math.log;
var LOG2E = Math.LOG2E;
2020-01-17 14:55:39 +08:00
// `Math.clz32` method
// https://tc39.es/ecma262/#sec-math.clz32
_export({ target: 'Math', stat: true }, {
clz32: function clz32(x) {
return (x >>>= 0) ? 31 - floor$7(log$3(x + 0.5) * LOG2E) : 32;
}
});
2020-01-17 14:55:39 +08:00
// eslint-disable-next-line es/no-math-expm1 -- safe
var $expm1 = Math.expm1;
var exp$2 = Math.exp;
2020-01-17 14:55:39 +08:00
// `Math.expm1` method implementation
// https://tc39.es/ecma262/#sec-math.expm1
var mathExpm1 = (!$expm1
// Old FF bug
|| $expm1(10) > 22025.465794806719 || $expm1(10) < 22025.4657948067165168
// Tor Browser bug
|| $expm1(-2e-17) != -2e-17
) ? function expm1(x) {
return (x = +x) == 0 ? x : x > -1e-6 && x < 1e-6 ? x + x * x / 2 : exp$2(x) - 1;
} : $expm1;
2020-01-17 14:55:39 +08:00
// eslint-disable-next-line es/no-math-cosh -- required for testing
var $cosh = Math.cosh;
var abs$4 = Math.abs;
var E$1 = Math.E;
2020-01-17 14:55:39 +08:00
// `Math.cosh` method
// https://tc39.es/ecma262/#sec-math.cosh
_export({ target: 'Math', stat: true, forced: !$cosh || $cosh(710) === Infinity }, {
cosh: function cosh(x) {
var t = mathExpm1(abs$4(x) - 1) + 1;
return (t + 1 / (t * E$1 * E$1)) * (E$1 / 2);
}
});
2020-01-17 14:55:39 +08:00
// `Math.expm1` method
// https://tc39.es/ecma262/#sec-math.expm1
// eslint-disable-next-line es/no-math-expm1 -- required for testing
_export({ target: 'Math', stat: true, forced: mathExpm1 != Math.expm1 }, { expm1: mathExpm1 });
2020-01-17 14:55:39 +08:00
var abs$3 = Math.abs;
var pow$2 = Math.pow;
var EPSILON = pow$2(2, -52);
var EPSILON32 = pow$2(2, -23);
var MAX32 = pow$2(2, 127) * (2 - EPSILON32);
var MIN32 = pow$2(2, -126);
2020-01-17 14:55:39 +08:00
var roundTiesToEven = function (n) {
return n + 1 / EPSILON - 1 / EPSILON;
};
2020-01-17 14:55:39 +08:00
// `Math.fround` method implementation
// https://tc39.es/ecma262/#sec-math.fround
// eslint-disable-next-line es/no-math-fround -- safe
var mathFround = Math.fround || function fround(x) {
var $abs = abs$3(x);
var $sign = mathSign(x);
var a, result;
if ($abs < MIN32) { return $sign * roundTiesToEven($abs / MIN32 / EPSILON32) * MIN32 * EPSILON32; }
a = (1 + EPSILON32 / EPSILON) * $abs;
result = a - (a - $abs);
// eslint-disable-next-line no-self-compare -- NaN check
if (result > MAX32 || result != result) { return $sign * Infinity; }
return $sign * result;
2021-09-22 10:28:02 +08:00
};
2020-01-17 14:55:39 +08:00
// `Math.fround` method
// https://tc39.es/ecma262/#sec-math.fround
_export({ target: 'Math', stat: true }, { fround: mathFround });
2020-01-17 14:55:39 +08:00
// eslint-disable-next-line es/no-math-hypot -- required for testing
var $hypot = Math.hypot;
var abs$2 = Math.abs;
var sqrt = Math.sqrt;
2020-01-17 14:55:39 +08:00
// Chrome 77 bug
// https://bugs.chromium.org/p/v8/issues/detail?id=9546
var BUGGY = !!$hypot && $hypot(Infinity, NaN) !== Infinity;
2020-01-17 14:55:39 +08:00
// `Math.hypot` method
// https://tc39.es/ecma262/#sec-math.hypot
_export({ target: 'Math', stat: true, forced: BUGGY }, {
// eslint-disable-next-line no-unused-vars -- required for `.length`
hypot: function hypot(value1, value2) {
var arguments$1 = arguments;
var sum = 0;
var i = 0;
var aLen = arguments.length;
var larg = 0;
var arg, div;
while (i < aLen) {
arg = abs$2(arguments$1[i++]);
if (larg < arg) {
div = larg / arg;
sum = sum * div * div + 1;
larg = arg;
} else if (arg > 0) {
div = arg / larg;
sum += div * div;
} else { sum += arg; }
}
return larg === Infinity ? Infinity : larg * sqrt(sum);
2021-09-22 10:28:02 +08:00
}
});
2021-05-12 15:34:21 +08:00
// eslint-disable-next-line es/no-math-imul -- required for testing
var $imul = Math.imul;
2021-10-29 14:30:00 +08:00
var FORCED$j = fails(function () {
return $imul(0xFFFFFFFF, 5) != -5 || $imul.length != 2;
2021-09-22 10:28:02 +08:00
});
2021-09-01 10:47:40 +08:00
// `Math.imul` method
// https://tc39.es/ecma262/#sec-math.imul
// some WebKit versions fails with big numbers, some has wrong arity
2021-10-29 14:30:00 +08:00
_export({ target: 'Math', stat: true, forced: FORCED$j }, {
imul: function imul(x, y) {
var UINT16 = 0xFFFF;
var xn = +x;
var yn = +y;
var xl = UINT16 & xn;
var yl = UINT16 & yn;
return 0 | xl * yl + ((UINT16 & xn >>> 16) * yl + xl * (UINT16 & yn >>> 16) << 16 >>> 0);
}
2021-05-12 15:34:21 +08:00
});
var log$2 = Math.log;
var LOG10E = Math.LOG10E;
2021-05-12 15:34:21 +08:00
// `Math.log10` method
// https://tc39.es/ecma262/#sec-math.log10
_export({ target: 'Math', stat: true }, {
log10: function log10(x) {
return log$2(x) * LOG10E;
}
});
2021-05-12 15:34:21 +08:00
// `Math.log1p` method
// https://tc39.es/ecma262/#sec-math.log1p
_export({ target: 'Math', stat: true }, { log1p: mathLog1p });
2020-01-17 14:55:39 +08:00
var log$1 = Math.log;
var LN2 = Math.LN2;
2020-01-17 14:55:39 +08:00
// `Math.log2` method
// https://tc39.es/ecma262/#sec-math.log2
_export({ target: 'Math', stat: true }, {
log2: function log2(x) {
return log$1(x) / LN2;
}
});
2020-01-17 14:55:39 +08:00
// `Math.sign` method
// https://tc39.es/ecma262/#sec-math.sign
_export({ target: 'Math', stat: true }, {
sign: mathSign
});
2020-01-17 14:55:39 +08:00
var abs$1 = Math.abs;
var exp$1 = Math.exp;
var E = Math.E;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var FORCED$i = fails(function () {
// eslint-disable-next-line es/no-math-sinh -- required for testing
return Math.sinh(-2e-17) != -2e-17;
});
2021-09-22 10:28:02 +08:00
// `Math.sinh` method
// https://tc39.es/ecma262/#sec-math.sinh
// V8 near Chromium 38 has a problem with very small numbers
2021-10-29 14:30:00 +08:00
_export({ target: 'Math', stat: true, forced: FORCED$i }, {
sinh: function sinh(x) {
return abs$1(x = +x) < 1 ? (mathExpm1(x) - mathExpm1(-x)) / 2 : (exp$1(x - 1) - exp$1(-x - 1)) * (E / 2);
}
});
2021-09-22 10:28:02 +08:00
var exp = Math.exp;
2021-09-22 10:28:02 +08:00
// `Math.tanh` method
// https://tc39.es/ecma262/#sec-math.tanh
_export({ target: 'Math', stat: true }, {
tanh: function tanh(x) {
var a = mathExpm1(x = +x);
var b = mathExpm1(-x);
return a == Infinity ? 1 : b == Infinity ? -1 : (a - b) / (exp(x) + exp(-x));
}
2021-09-01 10:47:40 +08:00
});
2020-01-17 14:55:39 +08:00
// Math[@@toStringTag] property
// https://tc39.es/ecma262/#sec-math-@@tostringtag
setToStringTag(Math, 'Math', true);
2020-01-17 14:55:39 +08:00
var ceil = Math.ceil;
var floor$6 = Math.floor;
2020-01-17 14:55:39 +08:00
// `Math.trunc` method
// https://tc39.es/ecma262/#sec-math.trunc
_export({ target: 'Math', stat: true }, {
trunc: function trunc(it) {
return (it > 0 ? floor$6 : ceil)(it);
}
2021-09-22 10:28:02 +08:00
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
// `thisNumberValue` abstract operation
// https://tc39.es/ecma262/#sec-thisnumbervalue
var thisNumberValue = functionUncurryThis(1.0.valueOf);
// a string of all valid unicode whitespaces
var whitespaces = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' +
'\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var replace$7 = functionUncurryThis(''.replace);
var whitespace = '[' + whitespaces + ']';
var ltrim = RegExp('^' + whitespace + whitespace + '*');
var rtrim = RegExp(whitespace + whitespace + '*$');
2020-01-17 14:55:39 +08:00
// `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation
var createMethod$4 = function (TYPE) {
return function ($this) {
2021-10-29 14:30:00 +08:00
var string = toString_1(requireObjectCoercible($this));
if (TYPE & 1) { string = replace$7(string, ltrim, ''); }
if (TYPE & 2) { string = replace$7(string, rtrim, ''); }
return string;
};
};
2020-01-17 14:55:39 +08:00
var stringTrim = {
// `String.prototype.{ trimLeft, trimStart }` methods
// https://tc39.es/ecma262/#sec-string.prototype.trimstart
start: createMethod$4(1),
// `String.prototype.{ trimRight, trimEnd }` methods
// https://tc39.es/ecma262/#sec-string.prototype.trimend
end: createMethod$4(2),
// `String.prototype.trim` method
// https://tc39.es/ecma262/#sec-string.prototype.trim
trim: createMethod$4(3)
};
2020-01-17 14:55:39 +08:00
var getOwnPropertyNames$2 = objectGetOwnPropertyNames.f;
var getOwnPropertyDescriptor$6 = objectGetOwnPropertyDescriptor.f;
2021-10-29 14:30:00 +08:00
var defineProperty$7 = objectDefineProperty.f;
var trim$2 = stringTrim.trim;
2020-01-17 14:55:39 +08:00
var NUMBER = 'Number';
var NativeNumber = global_1[NUMBER];
var NumberPrototype = NativeNumber.prototype;
2021-10-29 14:30:00 +08:00
var TypeError$m = global_1.TypeError;
var arraySlice = functionUncurryThis(''.slice);
var charCodeAt$2 = functionUncurryThis(''.charCodeAt);
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
// `ToNumeric` abstract operation
// https://tc39.es/ecma262/#sec-tonumeric
var toNumeric = function (value) {
var primValue = toPrimitive(value, 'number');
return typeof primValue == 'bigint' ? primValue : toNumber(primValue);
};
2020-01-17 14:55:39 +08:00
// `ToNumber` abstract operation
// https://tc39.es/ecma262/#sec-tonumber
var toNumber = function (argument) {
2021-10-29 14:30:00 +08:00
var it = toPrimitive(argument, 'number');
var first, third, radix, maxCode, digits, length, index, code;
2021-10-29 14:30:00 +08:00
if (isSymbol(it)) { throw TypeError$m('Cannot convert a Symbol value to a number'); }
if (typeof it == 'string' && it.length > 2) {
it = trim$2(it);
2021-10-29 14:30:00 +08:00
first = charCodeAt$2(it, 0);
if (first === 43 || first === 45) {
2021-10-29 14:30:00 +08:00
third = charCodeAt$2(it, 2);
if (third === 88 || third === 120) { return NaN; } // Number('+0x1') should be NaN, old V8 fix
} else if (first === 48) {
2021-10-29 14:30:00 +08:00
switch (charCodeAt$2(it, 1)) {
case 66: case 98: radix = 2; maxCode = 49; break; // fast equal of /^0b[01]+$/i
case 79: case 111: radix = 8; maxCode = 55; break; // fast equal of /^0o[0-7]+$/i
default: return +it;
}
2021-10-29 14:30:00 +08:00
digits = arraySlice(it, 2);
length = digits.length;
for (index = 0; index < length; index++) {
2021-10-29 14:30:00 +08:00
code = charCodeAt$2(digits, index);
// parseInt parses a string to a first unavailable symbol
// but ToNumber should return NaN if a string contains unavailable symbols
if (code < 48 || code > maxCode) { return NaN; }
} return parseInt(digits, radix);
}
} return +it;
};
2020-01-17 14:55:39 +08:00
// `Number` constructor
// https://tc39.es/ecma262/#sec-number-constructor
if (isForced_1(NUMBER, !NativeNumber(' 0o1') || !NativeNumber('0b1') || NativeNumber('+0x1'))) {
var NumberWrapper = function Number(value) {
2021-10-29 14:30:00 +08:00
var n = arguments.length < 1 ? 0 : NativeNumber(toNumeric(value));
var dummy = this;
2021-10-29 14:30:00 +08:00
// check on 1..constructor(foo) case
return objectIsPrototypeOf(NumberPrototype, dummy) && fails(function () { thisNumberValue(dummy); })
? inheritIfRequired(Object(n), dummy, NumberWrapper) : n;
};
for (var keys$1 = descriptors ? getOwnPropertyNames$2(NativeNumber) : (
// ES3:
'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' +
// ES2015 (in case, if modules with ES2015 Number statics required before):
2021-10-29 14:30:00 +08:00
'EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,' +
// ESNext
'fromString,range'
).split(','), j = 0, key; keys$1.length > j; j++) {
2021-10-29 14:30:00 +08:00
if (hasOwnProperty_1(NativeNumber, key = keys$1[j]) && !hasOwnProperty_1(NumberWrapper, key)) {
defineProperty$7(NumberWrapper, key, getOwnPropertyDescriptor$6(NativeNumber, key));
}
2021-09-22 10:28:02 +08:00
}
NumberWrapper.prototype = NumberPrototype;
NumberPrototype.constructor = NumberWrapper;
redefine(global_1, NUMBER, NumberWrapper);
}
2020-01-17 14:55:39 +08:00
// `Number.EPSILON` constant
// https://tc39.es/ecma262/#sec-number.epsilon
_export({ target: 'Number', stat: true }, {
EPSILON: Math.pow(2, -52)
2021-09-01 10:47:40 +08:00
});
2020-01-17 14:55:39 +08:00
var globalIsFinite = global_1.isFinite;
2021-05-12 15:34:21 +08:00
// `Number.isFinite` method
// https://tc39.es/ecma262/#sec-number.isfinite
// eslint-disable-next-line es/no-number-isfinite -- safe
var numberIsFinite = Number.isFinite || function isFinite(it) {
return typeof it == 'number' && globalIsFinite(it);
};
2021-09-01 10:47:40 +08:00
// `Number.isFinite` method
// https://tc39.es/ecma262/#sec-number.isfinite
_export({ target: 'Number', stat: true }, { isFinite: numberIsFinite });
2021-09-01 10:47:40 +08:00
var floor$5 = Math.floor;
2021-10-29 14:30:00 +08:00
// `IsIntegralNumber` abstract operation
// https://tc39.es/ecma262/#sec-isintegralnumber
// eslint-disable-next-line es/no-number-isinteger -- safe
var isIntegralNumber = Number.isInteger || function isInteger(it) {
return !isObject(it) && isFinite(it) && floor$5(it) === it;
};
2021-05-12 15:34:21 +08:00
// `Number.isInteger` method
// https://tc39.es/ecma262/#sec-number.isinteger
_export({ target: 'Number', stat: true }, {
2021-10-29 14:30:00 +08:00
isInteger: isIntegralNumber
});
2021-09-22 10:28:02 +08:00
// `Number.isNaN` method
// https://tc39.es/ecma262/#sec-number.isnan
_export({ target: 'Number', stat: true }, {
isNaN: function isNaN(number) {
// eslint-disable-next-line no-self-compare -- NaN check
return number != number;
}
});
2021-05-12 15:34:21 +08:00
var abs = Math.abs;
2020-01-17 14:55:39 +08:00
// `Number.isSafeInteger` method
// https://tc39.es/ecma262/#sec-number.issafeinteger
_export({ target: 'Number', stat: true }, {
isSafeInteger: function isSafeInteger(number) {
2021-10-29 14:30:00 +08:00
return isIntegralNumber(number) && abs(number) <= 0x1FFFFFFFFFFFFF;
}
});
2020-01-17 14:55:39 +08:00
// `Number.MAX_SAFE_INTEGER` constant
// https://tc39.es/ecma262/#sec-number.max_safe_integer
_export({ target: 'Number', stat: true }, {
MAX_SAFE_INTEGER: 0x1FFFFFFFFFFFFF
});
2021-09-01 10:47:40 +08:00
// `Number.MIN_SAFE_INTEGER` constant
// https://tc39.es/ecma262/#sec-number.min_safe_integer
_export({ target: 'Number', stat: true }, {
MIN_SAFE_INTEGER: -0x1FFFFFFFFFFFFF
});
2021-09-01 10:47:40 +08:00
var trim$1 = stringTrim.trim;
2021-09-01 10:47:40 +08:00
2021-10-29 14:30:00 +08:00
var charAt$d = functionUncurryThis(''.charAt);
var n$ParseFloat = global_1.parseFloat;
var Symbol$2 = global_1.Symbol;
var ITERATOR$5 = Symbol$2 && Symbol$2.iterator;
var FORCED$h = 1 / n$ParseFloat(whitespaces + '-0') !== -Infinity
// MS Edge 18- broken with boxed symbols
|| (ITERATOR$5 && !fails(function () { n$ParseFloat(Object(ITERATOR$5)); }));
2020-01-17 14:55:39 +08:00
// `parseFloat` method
// https://tc39.es/ecma262/#sec-parsefloat-string
2021-10-29 14:30:00 +08:00
var numberParseFloat = FORCED$h ? function parseFloat(string) {
var trimmedString = trim$1(toString_1(string));
var result = n$ParseFloat(trimmedString);
return result === 0 && charAt$d(trimmedString, 0) == '-' ? -0 : result;
} : n$ParseFloat;
2020-01-17 14:55:39 +08:00
// `Number.parseFloat` method
// https://tc39.es/ecma262/#sec-number.parseFloat
// eslint-disable-next-line es/no-number-parsefloat -- required for testing
_export({ target: 'Number', stat: true, forced: Number.parseFloat != numberParseFloat }, {
parseFloat: numberParseFloat
2020-01-17 14:55:39 +08:00
});
var trim = stringTrim.trim;
2020-01-17 14:55:39 +08:00
var $parseInt = global_1.parseInt;
2021-10-29 14:30:00 +08:00
var Symbol$1 = global_1.Symbol;
var ITERATOR$4 = Symbol$1 && Symbol$1.iterator;
var hex = /^[+-]?0x/i;
var exec$6 = functionUncurryThis(hex.exec);
var FORCED$g = $parseInt(whitespaces + '08') !== 8 || $parseInt(whitespaces + '0x16') !== 22
// MS Edge 18- broken with boxed symbols
|| (ITERATOR$4 && !fails(function () { $parseInt(Object(ITERATOR$4)); }));
2020-01-17 14:55:39 +08:00
// `parseInt` method
// https://tc39.es/ecma262/#sec-parseint-string-radix
2021-10-29 14:30:00 +08:00
var numberParseInt = FORCED$g ? function parseInt(string, radix) {
var S = trim(toString_1(string));
return $parseInt(S, (radix >>> 0) || (exec$6(hex, S) ? 16 : 10));
} : $parseInt;
2021-09-22 10:28:02 +08:00
// `Number.parseInt` method
// https://tc39.es/ecma262/#sec-number.parseint
// eslint-disable-next-line es/no-number-parseint -- required for testing
_export({ target: 'Number', stat: true, forced: Number.parseInt != numberParseInt }, {
parseInt: numberParseInt
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var RangeError$7 = global_1.RangeError;
var String$2 = global_1.String;
var floor$4 = Math.floor;
2021-10-29 14:30:00 +08:00
var repeat = functionUncurryThis(stringRepeat);
var stringSlice$d = functionUncurryThis(''.slice);
var un$ToFixed = functionUncurryThis(1.0.toFixed);
2020-01-17 14:55:39 +08:00
var pow$1 = function (x, n, acc) {
return n === 0 ? acc : n % 2 === 1 ? pow$1(x, n - 1, acc * x) : pow$1(x * x, n / 2, acc);
};
2020-01-17 14:55:39 +08:00
var log = function (x) {
var n = 0;
var x2 = x;
while (x2 >= 4096) {
n += 12;
x2 /= 4096;
}
while (x2 >= 2) {
n += 1;
x2 /= 2;
} return n;
};
2021-09-22 10:28:02 +08:00
var multiply = function (data, n, c) {
var index = -1;
var c2 = c;
while (++index < 6) {
c2 += n * data[index];
data[index] = c2 % 1e7;
c2 = floor$4(c2 / 1e7);
2021-09-01 10:47:40 +08:00
}
};
var divide = function (data, n) {
var index = 6;
var c = 0;
while (--index >= 0) {
c += data[index];
data[index] = floor$4(c / n);
c = (c % n) * 1e7;
}
2021-09-01 10:47:40 +08:00
};
2020-01-17 14:55:39 +08:00
var dataToString = function (data) {
var index = 6;
var s = '';
while (--index >= 0) {
if (s !== '' || index === 0 || data[index] !== 0) {
2021-10-29 14:30:00 +08:00
var t = String$2(data[index]);
s = s === '' ? t : s + repeat('0', 7 - t.length) + t;
}
} return s;
};
2021-10-29 14:30:00 +08:00
var FORCED$f = fails(function () {
return un$ToFixed(0.00008, 3) !== '0.000' ||
un$ToFixed(0.9, 0) !== '1' ||
un$ToFixed(1.255, 2) !== '1.25' ||
un$ToFixed(1000000000000000128.0, 0) !== '1000000000000000128';
}) || !fails(function () {
// V8 ~ Android 4.3-
2021-10-29 14:30:00 +08:00
un$ToFixed({});
});
// `Number.prototype.toFixed` method
// https://tc39.es/ecma262/#sec-number.prototype.tofixed
2021-10-29 14:30:00 +08:00
_export({ target: 'Number', proto: true, forced: FORCED$f }, {
toFixed: function toFixed(fractionDigits) {
var number = thisNumberValue(this);
2021-10-29 14:30:00 +08:00
var fractDigits = toIntegerOrInfinity(fractionDigits);
var data = [0, 0, 0, 0, 0, 0];
var sign = '';
var result = '0';
var e, z, j, k;
2021-10-29 14:30:00 +08:00
if (fractDigits < 0 || fractDigits > 20) { throw RangeError$7('Incorrect fraction digits'); }
// eslint-disable-next-line no-self-compare -- NaN check
if (number != number) { return 'NaN'; }
2021-10-29 14:30:00 +08:00
if (number <= -1e21 || number >= 1e21) { return String$2(number); }
if (number < 0) {
sign = '-';
number = -number;
}
if (number > 1e-21) {
e = log(number * pow$1(2, 69, 1)) - 69;
z = e < 0 ? number * pow$1(2, -e, 1) : number / pow$1(2, e, 1);
z *= 0x10000000000000;
e = 52 - e;
if (e > 0) {
multiply(data, 0, z);
j = fractDigits;
while (j >= 7) {
multiply(data, 1e7, 0);
j -= 7;
}
multiply(data, pow$1(10, j, 1), 0);
j = e - 1;
while (j >= 23) {
divide(data, 1 << 23);
j -= 23;
}
divide(data, 1 << j);
multiply(data, 1, 1);
divide(data, 2);
result = dataToString(data);
} else {
multiply(data, 0, z);
multiply(data, 1 << -e, 0);
2021-10-29 14:30:00 +08:00
result = dataToString(data) + repeat('0', fractDigits);
}
}
if (fractDigits > 0) {
k = result.length;
result = sign + (k <= fractDigits
2021-10-29 14:30:00 +08:00
? '0.' + repeat('0', fractDigits - k) + result
: stringSlice$d(result, 0, k - fractDigits) + '.' + stringSlice$d(result, k - fractDigits));
} else {
result = sign + result;
} return result;
}
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var un$ToPrecision = functionUncurryThis(1.0.toPrecision);
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var FORCED$e = fails(function () {
// IE7-
2021-10-29 14:30:00 +08:00
return un$ToPrecision(1, undefined) !== '1';
}) || !fails(function () {
// V8 ~ Android 4.3-
2021-10-29 14:30:00 +08:00
un$ToPrecision({});
});
2020-01-17 14:55:39 +08:00
// `Number.prototype.toPrecision` method
// https://tc39.es/ecma262/#sec-number.prototype.toprecision
2021-10-29 14:30:00 +08:00
_export({ target: 'Number', proto: true, forced: FORCED$e }, {
toPrecision: function toPrecision(precision) {
return precision === undefined
2021-10-29 14:30:00 +08:00
? un$ToPrecision(thisNumberValue(this))
: un$ToPrecision(thisNumberValue(this), precision);
}
});
2021-09-01 10:47:40 +08:00
// eslint-disable-next-line es/no-object-assign -- safe
var $assign = Object.assign;
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
2021-10-29 14:30:00 +08:00
var defineProperty$6 = Object.defineProperty;
var concat$2 = functionUncurryThis([].concat);
2021-09-01 10:47:40 +08:00
// `Object.assign` method
// https://tc39.es/ecma262/#sec-object.assign
var objectAssign = !$assign || fails(function () {
// should have correct order of operations (Edge bug)
2021-10-29 14:30:00 +08:00
if (descriptors && $assign({ b: 1 }, $assign(defineProperty$6({}, 'a', {
enumerable: true,
get: function () {
2021-10-29 14:30:00 +08:00
defineProperty$6(this, 'b', {
value: 3,
enumerable: false
});
}
}), { b: 2 })).b !== 1) { return true; }
// should work with symbols and should have deterministic property order (V8 bug)
var A = {};
var B = {};
// eslint-disable-next-line es/no-symbol -- safe
var symbol = Symbol();
var alphabet = 'abcdefghijklmnopqrst';
A[symbol] = 7;
alphabet.split('').forEach(function (chr) { B[chr] = chr; });
return $assign({}, A)[symbol] != 7 || objectKeys($assign({}, B)).join('') != alphabet;
}) ? function assign(target, source) {
var arguments$1 = arguments;
// eslint-disable-line no-unused-vars -- required for `.length`
var T = toObject(target);
var argumentsLength = arguments.length;
var index = 1;
var getOwnPropertySymbols = objectGetOwnPropertySymbols.f;
var propertyIsEnumerable = objectPropertyIsEnumerable.f;
while (argumentsLength > index) {
var S = indexedObject(arguments$1[index++]);
2021-10-29 14:30:00 +08:00
var keys = getOwnPropertySymbols ? concat$2(objectKeys(S), getOwnPropertySymbols(S)) : objectKeys(S);
var length = keys.length;
var j = 0;
var key;
while (length > j) {
key = keys[j++];
2021-10-29 14:30:00 +08:00
if (!descriptors || functionCall(propertyIsEnumerable, S, key)) { T[key] = S[key]; }
}
} return T;
} : $assign;
2021-09-01 10:47:40 +08:00
// `Object.assign` method
// https://tc39.es/ecma262/#sec-object.assign
// eslint-disable-next-line es/no-object-assign -- required for testing
_export({ target: 'Object', stat: true, forced: Object.assign !== objectAssign }, {
assign: objectAssign
});
2020-01-17 14:55:39 +08:00
// `Object.create` method
// https://tc39.es/ecma262/#sec-object.create
_export({ target: 'Object', stat: true, sham: !descriptors }, {
create: objectCreate
});
2021-09-01 10:47:40 +08:00
// Forced replacement object prototype accessors methods
var objectPrototypeAccessorsForced = !fails(function () {
// This feature detection crashes old WebKit
// https://github.com/zloirock/core-js/issues/232
if (engineWebkitVersion && engineWebkitVersion < 535) { return; }
var key = Math.random();
// In FF throws only define methods
// eslint-disable-next-line no-undef, no-useless-call -- required for testing
__defineSetter__.call(null, key, function () { /* empty */ });
delete global_1[key];
});
2020-01-17 14:55:39 +08:00
// `Object.prototype.__defineGetter__` method
// https://tc39.es/ecma262/#sec-object.prototype.__defineGetter__
if (descriptors) {
_export({ target: 'Object', proto: true, forced: objectPrototypeAccessorsForced }, {
__defineGetter__: function __defineGetter__(P, getter) {
2021-10-29 14:30:00 +08:00
objectDefineProperty.f(toObject(this), P, { get: aCallable(getter), enumerable: true, configurable: true });
}
});
}
2020-01-17 14:55:39 +08:00
// `Object.defineProperties` method
// https://tc39.es/ecma262/#sec-object.defineproperties
_export({ target: 'Object', stat: true, forced: !descriptors, sham: !descriptors }, {
defineProperties: objectDefineProperties
});
2021-09-01 10:47:40 +08:00
// `Object.defineProperty` method
// https://tc39.es/ecma262/#sec-object.defineproperty
_export({ target: 'Object', stat: true, forced: !descriptors, sham: !descriptors }, {
defineProperty: objectDefineProperty.f
});
2020-01-17 14:55:39 +08:00
// `Object.prototype.__defineSetter__` method
// https://tc39.es/ecma262/#sec-object.prototype.__defineSetter__
if (descriptors) {
_export({ target: 'Object', proto: true, forced: objectPrototypeAccessorsForced }, {
__defineSetter__: function __defineSetter__(P, setter) {
2021-10-29 14:30:00 +08:00
objectDefineProperty.f(toObject(this), P, { set: aCallable(setter), enumerable: true, configurable: true });
}
});
}
2021-05-12 15:34:21 +08:00
2021-10-29 14:30:00 +08:00
var $propertyIsEnumerable = objectPropertyIsEnumerable.f;
var propertyIsEnumerable = functionUncurryThis($propertyIsEnumerable);
var push$e = functionUncurryThis([].push);
2020-01-17 14:55:39 +08:00
// `Object.{ entries, values }` methods implementation
var createMethod$3 = function (TO_ENTRIES) {
return function (it) {
var O = toIndexedObject(it);
var keys = objectKeys(O);
var length = keys.length;
var i = 0;
var result = [];
var key;
while (length > i) {
key = keys[i++];
2021-10-29 14:30:00 +08:00
if (!descriptors || propertyIsEnumerable(O, key)) {
push$e(result, TO_ENTRIES ? [key, O[key]] : O[key]);
}
}
return result;
};
};
2020-01-17 14:55:39 +08:00
var objectToArray = {
// `Object.entries` method
// https://tc39.es/ecma262/#sec-object.entries
entries: createMethod$3(true),
// `Object.values` method
// https://tc39.es/ecma262/#sec-object.values
values: createMethod$3(false)
};
2020-01-17 14:55:39 +08:00
var $entries = objectToArray.entries;
2020-01-17 14:55:39 +08:00
// `Object.entries` method
// https://tc39.es/ecma262/#sec-object.entries
_export({ target: 'Object', stat: true }, {
entries: function entries(O) {
return $entries(O);
}
});
2020-01-17 14:55:39 +08:00
var onFreeze$2 = internalMetadata.onFreeze;
2020-01-17 14:55:39 +08:00
// eslint-disable-next-line es/no-object-freeze -- safe
var $freeze = Object.freeze;
var FAILS_ON_PRIMITIVES$9 = fails(function () { $freeze(1); });
2020-01-17 14:55:39 +08:00
// `Object.freeze` method
// https://tc39.es/ecma262/#sec-object.freeze
_export({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES$9, sham: !freezing }, {
freeze: function freeze(it) {
return $freeze && isObject(it) ? $freeze(onFreeze$2(it)) : it;
}
});
2020-01-17 14:55:39 +08:00
// `Object.fromEntries` method
// https://github.com/tc39/proposal-object-from-entries
_export({ target: 'Object', stat: true }, {
fromEntries: function fromEntries(iterable) {
var obj = {};
iterate(iterable, function (k, v) {
createProperty(obj, k, v);
}, { AS_ENTRIES: true });
return obj;
}
});
2020-01-17 14:55:39 +08:00
var nativeGetOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
2020-01-17 14:55:39 +08:00
var FAILS_ON_PRIMITIVES$8 = fails(function () { nativeGetOwnPropertyDescriptor(1); });
2021-10-29 14:30:00 +08:00
var FORCED$d = !descriptors || FAILS_ON_PRIMITIVES$8;
2020-01-17 14:55:39 +08:00
// `Object.getOwnPropertyDescriptor` method
// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
2021-10-29 14:30:00 +08:00
_export({ target: 'Object', stat: true, forced: FORCED$d, sham: !descriptors }, {
getOwnPropertyDescriptor: function getOwnPropertyDescriptor(it, key) {
return nativeGetOwnPropertyDescriptor(toIndexedObject(it), key);
}
});
2020-01-17 14:55:39 +08:00
// `Object.getOwnPropertyDescriptors` method
// https://tc39.es/ecma262/#sec-object.getownpropertydescriptors
_export({ target: 'Object', stat: true, sham: !descriptors }, {
getOwnPropertyDescriptors: function getOwnPropertyDescriptors(object) {
var O = toIndexedObject(object);
var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
var keys = ownKeys(O);
var result = {};
var index = 0;
var key, descriptor;
while (keys.length > index) {
descriptor = getOwnPropertyDescriptor(O, key = keys[index++]);
if (descriptor !== undefined) { createProperty(result, key, descriptor); }
}
return result;
}
});
2020-01-17 14:55:39 +08:00
var getOwnPropertyNames$1 = objectGetOwnPropertyNamesExternal.f;
2020-01-17 14:55:39 +08:00
// eslint-disable-next-line es/no-object-getownpropertynames -- required for testing
var FAILS_ON_PRIMITIVES$7 = fails(function () { return !Object.getOwnPropertyNames(1); });
2020-01-17 14:55:39 +08:00
// `Object.getOwnPropertyNames` method
// https://tc39.es/ecma262/#sec-object.getownpropertynames
_export({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES$7 }, {
getOwnPropertyNames: getOwnPropertyNames$1
});
2020-01-17 14:55:39 +08:00
var FAILS_ON_PRIMITIVES$6 = fails(function () { objectGetPrototypeOf(1); });
2020-01-17 14:55:39 +08:00
// `Object.getPrototypeOf` method
// https://tc39.es/ecma262/#sec-object.getprototypeof
_export({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES$6, sham: !correctPrototypeGetter }, {
getPrototypeOf: function getPrototypeOf(it) {
return objectGetPrototypeOf(toObject(it));
}
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
// `Object.hasOwn` method
// https://github.com/tc39/proposal-accessible-object-hasownproperty
_export({ target: 'Object', stat: true }, {
hasOwn: hasOwnProperty_1
});
// `SameValue` abstract operation
// https://tc39.es/ecma262/#sec-samevalue
// eslint-disable-next-line es/no-object-is -- safe
var sameValue = Object.is || function is(x, y) {
// eslint-disable-next-line no-self-compare -- NaN check
return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;
};
2020-01-17 14:55:39 +08:00
// `Object.is` method
// https://tc39.es/ecma262/#sec-object.is
_export({ target: 'Object', stat: true }, {
is: sameValue
});
2021-02-19 17:33:10 +08:00
// eslint-disable-next-line es/no-object-isextensible -- safe
var $isExtensible = Object.isExtensible;
var FAILS_ON_PRIMITIVES$5 = fails(function () { $isExtensible(1); });
2021-09-22 10:28:02 +08:00
// `Object.isExtensible` method
// https://tc39.es/ecma262/#sec-object.isextensible
_export({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES$5 }, {
isExtensible: function isExtensible(it) {
return isObject(it) ? $isExtensible ? $isExtensible(it) : true : false;
}
});
2021-09-22 10:28:02 +08:00
// eslint-disable-next-line es/no-object-isfrozen -- safe
var $isFrozen = Object.isFrozen;
var FAILS_ON_PRIMITIVES$4 = fails(function () { $isFrozen(1); });
// `Object.isFrozen` method
// https://tc39.es/ecma262/#sec-object.isfrozen
_export({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES$4 }, {
isFrozen: function isFrozen(it) {
return isObject(it) ? $isFrozen ? $isFrozen(it) : false : true;
}
});
// eslint-disable-next-line es/no-object-issealed -- safe
var $isSealed = Object.isSealed;
var FAILS_ON_PRIMITIVES$3 = fails(function () { $isSealed(1); });
// `Object.isSealed` method
// https://tc39.es/ecma262/#sec-object.issealed
_export({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES$3 }, {
isSealed: function isSealed(it) {
return isObject(it) ? $isSealed ? $isSealed(it) : false : true;
}
});
var FAILS_ON_PRIMITIVES$2 = fails(function () { objectKeys(1); });
// `Object.keys` method
// https://tc39.es/ecma262/#sec-object.keys
_export({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES$2 }, {
keys: function keys(it) {
return objectKeys(toObject(it));
}
});
2021-09-22 10:28:02 +08:00
var getOwnPropertyDescriptor$5 = objectGetOwnPropertyDescriptor.f;
// `Object.prototype.__lookupGetter__` method
// https://tc39.es/ecma262/#sec-object.prototype.__lookupGetter__
if (descriptors) {
_export({ target: 'Object', proto: true, forced: objectPrototypeAccessorsForced }, {
__lookupGetter__: function __lookupGetter__(P) {
var O = toObject(this);
2021-10-29 14:30:00 +08:00
var key = toPropertyKey(P);
var desc;
do {
if (desc = getOwnPropertyDescriptor$5(O, key)) { return desc.get; }
} while (O = objectGetPrototypeOf(O));
2021-09-22 10:28:02 +08:00
}
});
2021-09-22 10:28:02 +08:00
}
var getOwnPropertyDescriptor$4 = objectGetOwnPropertyDescriptor.f;
2020-01-17 14:55:39 +08:00
// `Object.prototype.__lookupSetter__` method
// https://tc39.es/ecma262/#sec-object.prototype.__lookupSetter__
if (descriptors) {
_export({ target: 'Object', proto: true, forced: objectPrototypeAccessorsForced }, {
__lookupSetter__: function __lookupSetter__(P) {
var O = toObject(this);
2021-10-29 14:30:00 +08:00
var key = toPropertyKey(P);
var desc;
do {
if (desc = getOwnPropertyDescriptor$4(O, key)) { return desc.set; }
} while (O = objectGetPrototypeOf(O));
}
});
}
2021-09-22 10:28:02 +08:00
var onFreeze$1 = internalMetadata.onFreeze;
2020-01-17 14:55:39 +08:00
// eslint-disable-next-line es/no-object-preventextensions -- safe
var $preventExtensions = Object.preventExtensions;
var FAILS_ON_PRIMITIVES$1 = fails(function () { $preventExtensions(1); });
2020-01-17 14:55:39 +08:00
// `Object.preventExtensions` method
// https://tc39.es/ecma262/#sec-object.preventextensions
_export({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES$1, sham: !freezing }, {
preventExtensions: function preventExtensions(it) {
return $preventExtensions && isObject(it) ? $preventExtensions(onFreeze$1(it)) : it;
2021-09-22 10:28:02 +08:00
}
});
2021-05-12 15:34:21 +08:00
var onFreeze = internalMetadata.onFreeze;
2021-05-12 15:34:21 +08:00
// eslint-disable-next-line es/no-object-seal -- safe
var $seal = Object.seal;
var FAILS_ON_PRIMITIVES = fails(function () { $seal(1); });
// `Object.seal` method
// https://tc39.es/ecma262/#sec-object.seal
_export({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES, sham: !freezing }, {
seal: function seal(it) {
return $seal && isObject(it) ? $seal(onFreeze(it)) : it;
2021-09-22 10:28:02 +08:00
}
});
2021-05-12 15:34:21 +08:00
// `Object.setPrototypeOf` method
// https://tc39.es/ecma262/#sec-object.setprototypeof
_export({ target: 'Object', stat: true }, {
setPrototypeOf: objectSetPrototypeOf
2021-09-01 10:47:40 +08:00
});
2020-01-17 14:55:39 +08:00
// `Object.prototype.toString` method implementation
// https://tc39.es/ecma262/#sec-object.prototype.tostring
var objectToString = toStringTagSupport ? {}.toString : function toString() {
return '[object ' + classof(this) + ']';
};
// `Object.prototype.toString` method
// https://tc39.es/ecma262/#sec-object.prototype.tostring
if (!toStringTagSupport) {
redefine(Object.prototype, 'toString', objectToString, { unsafe: true });
}
var $values = objectToArray.values;
// `Object.values` method
// https://tc39.es/ecma262/#sec-object.values
_export({ target: 'Object', stat: true }, {
values: function values(O) {
return $values(O);
}
2021-09-22 10:28:02 +08:00
});
2020-01-17 14:55:39 +08:00
// `parseFloat` method
// https://tc39.es/ecma262/#sec-parsefloat-string
_export({ global: true, forced: parseFloat != numberParseFloat }, {
parseFloat: numberParseFloat
});
2021-05-12 15:34:21 +08:00
// `parseInt` method
// https://tc39.es/ecma262/#sec-parseint-string-radix
_export({ global: true, forced: parseInt != numberParseInt }, {
parseInt: numberParseInt
2021-09-22 10:28:02 +08:00
});
2021-05-12 15:34:21 +08:00
var nativePromiseConstructor = global_1.Promise;
2021-10-29 14:30:00 +08:00
var engineIsIos = /(?:ipad|iphone|ipod).*applewebkit/i.test(engineUserAgent);
var set$1 = global_1.setImmediate;
var clear = global_1.clearImmediate;
var process$4 = global_1.process;
var Dispatch = global_1.Dispatch;
2021-10-29 14:30:00 +08:00
var Function$2 = global_1.Function;
var MessageChannel = global_1.MessageChannel;
var String$1 = global_1.String;
var counter = 0;
var queue = {};
var ONREADYSTATECHANGE = 'onreadystatechange';
2021-10-29 14:30:00 +08:00
var location, defer, channel, port;
try {
// Deno throws a ReferenceError on `location` access without `--location` flag
location = global_1.location;
} catch (error) { /* empty */ }
var run = function (id) {
2021-10-29 14:30:00 +08:00
if (hasOwnProperty_1(queue, id)) {
var fn = queue[id];
delete queue[id];
fn();
2021-09-22 10:28:02 +08:00
}
};
2021-05-12 15:34:21 +08:00
var runner = function (id) {
return function () {
run(id);
};
};
2020-01-17 14:55:39 +08:00
var listener = function (event) {
run(event.data);
};
2020-01-17 14:55:39 +08:00
var post = function (id) {
// old engines have not location.origin
2021-10-29 14:30:00 +08:00
global_1.postMessage(String$1(id), location.protocol + '//' + location.host);
};
2021-09-22 10:28:02 +08:00
// Node.js 0.9+ & IE10+ has setImmediate, otherwise:
if (!set$1 || !clear) {
set$1 = function setImmediate(fn) {
2021-10-29 14:30:00 +08:00
var args = arraySlice$1(arguments, 1);
queue[++counter] = function () {
2021-10-29 14:30:00 +08:00
functionApply(isCallable(fn) ? fn : Function$2(fn), undefined, args);
};
defer(counter);
return counter;
};
clear = function clearImmediate(id) {
delete queue[id];
};
// Node.js 0.8-
if (engineIsNode) {
defer = function (id) {
process$4.nextTick(runner(id));
};
// Sphere (JS game engine) Dispatch API
} else if (Dispatch && Dispatch.now) {
defer = function (id) {
Dispatch.now(runner(id));
};
// Browsers with MessageChannel, includes WebWorkers
// except iOS - https://github.com/zloirock/core-js/issues/624
} else if (MessageChannel && !engineIsIos) {
channel = new MessageChannel();
port = channel.port2;
channel.port1.onmessage = listener;
2021-10-29 14:30:00 +08:00
defer = functionBindContext(port.postMessage, port);
// Browsers with postMessage, skip WebWorkers
// IE8 has postMessage, but it's sync & typeof its postMessage is 'object'
} else if (
global_1.addEventListener &&
2021-10-29 14:30:00 +08:00
isCallable(global_1.postMessage) &&
!global_1.importScripts &&
location && location.protocol !== 'file:' &&
!fails(post)
) {
defer = post;
global_1.addEventListener('message', listener, false);
// IE8-
} else if (ONREADYSTATECHANGE in documentCreateElement('script')) {
defer = function (id) {
html.appendChild(documentCreateElement('script'))[ONREADYSTATECHANGE] = function () {
html.removeChild(this);
run(id);
};
};
// Rest old browsers
} else {
defer = function (id) {
setTimeout(runner(id), 0);
};
2021-09-22 10:28:02 +08:00
}
}
var task$1 = {
set: set$1,
clear: clear
};
2021-10-29 14:30:00 +08:00
var engineIsIosPebble = /ipad|iphone|ipod/i.test(engineUserAgent) && global_1.Pebble !== undefined;
var engineIsWebosWebkit = /web0s(?!.*chrome)/i.test(engineUserAgent);
2020-01-17 14:55:39 +08:00
var getOwnPropertyDescriptor$3 = objectGetOwnPropertyDescriptor.f;
var macrotask = task$1.set;
2020-01-17 14:55:39 +08:00
2021-05-12 15:34:21 +08:00
2021-10-29 14:30:00 +08:00
var MutationObserver = global_1.MutationObserver || global_1.WebKitMutationObserver;
var document$2 = global_1.document;
var process$3 = global_1.process;
var Promise$4 = global_1.Promise;
// Node.js 11 shows ExperimentalWarning on getting `queueMicrotask`
var queueMicrotaskDescriptor = getOwnPropertyDescriptor$3(global_1, 'queueMicrotask');
var queueMicrotask = queueMicrotaskDescriptor && queueMicrotaskDescriptor.value;
var flush, head, last, notify$1, toggle, node, promise, then;
// modern engines have queueMicrotask method
if (!queueMicrotask) {
flush = function () {
var parent, fn;
if (engineIsNode && (parent = process$3.domain)) { parent.exit(); }
while (head) {
fn = head.fn;
head = head.next;
try {
fn();
} catch (error) {
if (head) { notify$1(); }
else { last = undefined; }
throw error;
}
} last = undefined;
if (parent) { parent.enter(); }
};
// browsers with MutationObserver, except iOS - https://github.com/zloirock/core-js/issues/339
// also except WebOS Webkit https://github.com/zloirock/core-js/issues/898
if (!engineIsIos && !engineIsNode && !engineIsWebosWebkit && MutationObserver && document$2) {
toggle = true;
node = document$2.createTextNode('');
new MutationObserver(flush).observe(node, { characterData: true });
notify$1 = function () {
node.data = toggle = !toggle;
};
// environments with maybe non-completely correct, but existent Promise
2021-10-29 14:30:00 +08:00
} else if (!engineIsIosPebble && Promise$4 && Promise$4.resolve) {
// Promise.resolve without an argument throws an error in LG WebOS 2
promise = Promise$4.resolve(undefined);
// workaround of WebKit ~ iOS Safari 10.1 bug
promise.constructor = Promise$4;
2021-10-29 14:30:00 +08:00
then = functionBindContext(promise.then, promise);
notify$1 = function () {
2021-10-29 14:30:00 +08:00
then(flush);
};
// Node.js without promises
} else if (engineIsNode) {
notify$1 = function () {
process$3.nextTick(flush);
};
// for other environments - macrotask based on:
// - setImmediate
// - MessageChannel
// - window.postMessag
// - onreadystatechange
// - setTimeout
} else {
2021-10-29 14:30:00 +08:00
// strange IE + webpack dev server bug - use .bind(global)
macrotask = functionBindContext(macrotask, global_1);
notify$1 = function () {
2021-10-29 14:30:00 +08:00
macrotask(flush);
};
2021-09-22 10:28:02 +08:00
}
}
var microtask = queueMicrotask || function (fn) {
var task = { fn: fn, next: undefined };
if (last) { last.next = task; }
if (!head) {
head = task;
notify$1();
} last = task;
};
2021-05-12 15:34:21 +08:00
var PromiseCapability = function (C) {
var resolve, reject;
this.promise = new C(function ($$resolve, $$reject) {
if (resolve !== undefined || reject !== undefined) { throw TypeError('Bad Promise constructor'); }
resolve = $$resolve;
reject = $$reject;
});
2021-10-29 14:30:00 +08:00
this.resolve = aCallable(resolve);
this.reject = aCallable(reject);
};
2020-01-17 14:55:39 +08:00
// `NewPromiseCapability` abstract operation
// https://tc39.es/ecma262/#sec-newpromisecapability
var f = function (C) {
return new PromiseCapability(C);
};
2021-05-12 15:34:21 +08:00
var newPromiseCapability$1 = {
f: f
};
2021-05-12 15:34:21 +08:00
var promiseResolve = function (C, x) {
anObject(C);
if (isObject(x) && x.constructor === C) { return x; }
var promiseCapability = newPromiseCapability$1.f(C);
var resolve = promiseCapability.resolve;
resolve(x);
return promiseCapability.promise;
};
var hostReportErrors = function (a, b) {
var console = global_1.console;
if (console && console.error) {
2021-10-29 14:30:00 +08:00
arguments.length == 1 ? console.error(a) : console.error(a, b);
2021-09-22 10:28:02 +08:00
}
};
2020-01-17 14:55:39 +08:00
var perform = function (exec) {
try {
return { error: false, value: exec() };
} catch (error) {
return { error: true, value: error };
}
};
2021-05-12 15:34:21 +08:00
var engineIsBrowser = typeof window == 'object';
2021-05-12 15:34:21 +08:00
var task = task$1.set;
2021-05-12 15:34:21 +08:00
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
var SPECIES$1 = wellKnownSymbol('species');
var PROMISE = 'Promise';
2021-10-29 14:30:00 +08:00
var getInternalState$d = internalState.get;
var setInternalState$d = internalState.set;
var getInternalPromiseState = internalState.getterFor(PROMISE);
var NativePromisePrototype = nativePromiseConstructor && nativePromiseConstructor.prototype;
var PromiseConstructor = nativePromiseConstructor;
2021-10-29 14:30:00 +08:00
var PromisePrototype = NativePromisePrototype;
var TypeError$l = global_1.TypeError;
var document$1 = global_1.document;
var process$2 = global_1.process;
var newPromiseCapability = newPromiseCapability$1.f;
var newGenericPromiseCapability = newPromiseCapability;
2021-10-29 14:30:00 +08:00
var DISPATCH_EVENT = !!(document$1 && document$1.createEvent && global_1.dispatchEvent);
2021-10-29 14:30:00 +08:00
var NATIVE_REJECTION_EVENT = isCallable(global_1.PromiseRejectionEvent);
var UNHANDLED_REJECTION = 'unhandledrejection';
var REJECTION_HANDLED = 'rejectionhandled';
var PENDING = 0;
var FULFILLED = 1;
var REJECTED = 2;
var HANDLED = 1;
var UNHANDLED = 2;
var SUBCLASSING = false;
2021-10-29 14:30:00 +08:00
var Internal, OwnPromiseCapability, PromiseWrapper, nativeThen;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var FORCED$c = isForced_1(PROMISE, function () {
var PROMISE_CONSTRUCTOR_SOURCE = inspectSource(PromiseConstructor);
var GLOBAL_CORE_JS_PROMISE = PROMISE_CONSTRUCTOR_SOURCE !== String(PromiseConstructor);
// V8 6.6 (Node 10 and Chrome 66) have a bug with resolving custom thenables
// https://bugs.chromium.org/p/chromium/issues/detail?id=830565
// We can't detect it synchronously, so just check versions
if (!GLOBAL_CORE_JS_PROMISE && engineV8Version === 66) { return true; }
// We can't use @@species feature detection in V8 since it causes
// deoptimization and performance degradation
// https://github.com/zloirock/core-js/issues/679
2021-10-29 14:30:00 +08:00
if (engineV8Version >= 51 && /native code/.test(PROMISE_CONSTRUCTOR_SOURCE)) { return false; }
// Detect correctness of subclassing with @@species support
var promise = new PromiseConstructor(function (resolve) { resolve(1); });
var FakePromise = function (exec) {
exec(function () { /* empty */ }, function () { /* empty */ });
};
var constructor = promise.constructor = {};
constructor[SPECIES$1] = FakePromise;
SUBCLASSING = promise.then(function () { /* empty */ }) instanceof FakePromise;
if (!SUBCLASSING) { return true; }
// Unhandled rejections tracking support, NodeJS Promise without it fails @@species test
return !GLOBAL_CORE_JS_PROMISE && engineIsBrowser && !NATIVE_REJECTION_EVENT;
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var INCORRECT_ITERATION = FORCED$c || !checkCorrectnessOfIteration(function (iterable) {
PromiseConstructor.all(iterable)['catch'](function () { /* empty */ });
});
2020-01-17 14:55:39 +08:00
// helpers
var isThenable = function (it) {
var then;
2021-10-29 14:30:00 +08:00
return isObject(it) && isCallable(then = it.then) ? then : false;
};
2020-01-17 14:55:39 +08:00
var notify = function (state, isReject) {
if (state.notified) { return; }
state.notified = true;
var chain = state.reactions;
microtask(function () {
var value = state.value;
var ok = state.state == FULFILLED;
var index = 0;
// variable length - can't use forEach
while (chain.length > index) {
var reaction = chain[index++];
var handler = ok ? reaction.ok : reaction.fail;
var resolve = reaction.resolve;
var reject = reaction.reject;
var domain = reaction.domain;
var result, then, exited;
try {
if (handler) {
if (!ok) {
if (state.rejection === UNHANDLED) { onHandleUnhandled(state); }
state.rejection = HANDLED;
}
if (handler === true) { result = value; }
else {
if (domain) { domain.enter(); }
result = handler(value); // can throw
if (domain) {
domain.exit();
exited = true;
}
}
if (result === reaction.promise) {
2021-10-29 14:30:00 +08:00
reject(TypeError$l('Promise-chain cycle'));
} else if (then = isThenable(result)) {
2021-10-29 14:30:00 +08:00
functionCall(then, result, resolve, reject);
} else { resolve(result); }
} else { reject(value); }
} catch (error) {
if (domain && !exited) { domain.exit(); }
reject(error);
}
}
state.reactions = [];
state.notified = false;
if (isReject && !state.rejection) { onUnhandled(state); }
});
};
2021-09-22 10:28:02 +08:00
var dispatchEvent = function (name, promise, reason) {
var event, handler;
if (DISPATCH_EVENT) {
event = document$1.createEvent('Event');
event.promise = promise;
event.reason = reason;
event.initEvent(name, false, true);
global_1.dispatchEvent(event);
} else { event = { promise: promise, reason: reason }; }
if (!NATIVE_REJECTION_EVENT && (handler = global_1['on' + name])) { handler(event); }
else if (name === UNHANDLED_REJECTION) { hostReportErrors('Unhandled promise rejection', reason); }
};
2021-09-22 10:28:02 +08:00
var onUnhandled = function (state) {
2021-10-29 14:30:00 +08:00
functionCall(task, global_1, function () {
var promise = state.facade;
var value = state.value;
var IS_UNHANDLED = isUnhandled(state);
var result;
if (IS_UNHANDLED) {
result = perform(function () {
if (engineIsNode) {
process$2.emit('unhandledRejection', value, promise);
} else { dispatchEvent(UNHANDLED_REJECTION, promise, value); }
});
// Browsers should not trigger `rejectionHandled` event if it was handled here, NodeJS - should
state.rejection = engineIsNode || isUnhandled(state) ? UNHANDLED : HANDLED;
if (result.error) { throw result.value; }
}
});
};
2021-09-22 10:28:02 +08:00
var isUnhandled = function (state) {
return state.rejection !== HANDLED && !state.parent;
};
2021-09-22 10:28:02 +08:00
var onHandleUnhandled = function (state) {
2021-10-29 14:30:00 +08:00
functionCall(task, global_1, function () {
var promise = state.facade;
if (engineIsNode) {
process$2.emit('rejectionHandled', promise);
} else { dispatchEvent(REJECTION_HANDLED, promise, state.value); }
});
};
2021-09-22 10:28:02 +08:00
var bind = function (fn, state, unwrap) {
return function (value) {
fn(state, value, unwrap);
};
};
2020-01-17 14:55:39 +08:00
var internalReject = function (state, value, unwrap) {
if (state.done) { return; }
state.done = true;
if (unwrap) { state = unwrap; }
state.value = value;
state.state = REJECTED;
notify(state, true);
};
2020-01-17 14:55:39 +08:00
var internalResolve = function (state, value, unwrap) {
if (state.done) { return; }
state.done = true;
if (unwrap) { state = unwrap; }
try {
2021-10-29 14:30:00 +08:00
if (state.facade === value) { throw TypeError$l("Promise can't be resolved itself"); }
var then = isThenable(value);
if (then) {
microtask(function () {
var wrapper = { done: false };
try {
2021-10-29 14:30:00 +08:00
functionCall(then, value,
bind(internalResolve, wrapper, state),
bind(internalReject, wrapper, state)
);
} catch (error) {
internalReject(wrapper, error, state);
}
});
} else {
state.value = value;
state.state = FULFILLED;
notify(state, false);
}
} catch (error) {
internalReject({ done: false }, error, state);
}
};
2021-09-22 10:28:02 +08:00
// constructor polyfill
2021-10-29 14:30:00 +08:00
if (FORCED$c) {
// 25.4.3.1 Promise(executor)
PromiseConstructor = function Promise(executor) {
2021-10-29 14:30:00 +08:00
anInstance(this, PromisePrototype);
aCallable(executor);
functionCall(Internal, this);
var state = getInternalState$d(this);
try {
executor(bind(internalResolve, state), bind(internalReject, state));
} catch (error) {
internalReject(state, error);
}
};
2021-10-29 14:30:00 +08:00
PromisePrototype = PromiseConstructor.prototype;
// eslint-disable-next-line no-unused-vars -- required for `.length`
Internal = function Promise(executor) {
2021-10-29 14:30:00 +08:00
setInternalState$d(this, {
type: PROMISE,
done: false,
notified: false,
parent: false,
reactions: [],
rejection: false,
state: PENDING,
value: undefined
});
};
2021-10-29 14:30:00 +08:00
Internal.prototype = redefineAll(PromisePrototype, {
// `Promise.prototype.then` method
// https://tc39.es/ecma262/#sec-promise.prototype.then
then: function then(onFulfilled, onRejected) {
var state = getInternalPromiseState(this);
2021-10-29 14:30:00 +08:00
var reactions = state.reactions;
var reaction = newPromiseCapability(speciesConstructor(this, PromiseConstructor));
2021-10-29 14:30:00 +08:00
reaction.ok = isCallable(onFulfilled) ? onFulfilled : true;
reaction.fail = isCallable(onRejected) && onRejected;
reaction.domain = engineIsNode ? process$2.domain : undefined;
state.parent = true;
2021-10-29 14:30:00 +08:00
reactions[reactions.length] = reaction;
if (state.state != PENDING) { notify(state, false); }
return reaction.promise;
},
// `Promise.prototype.catch` method
// https://tc39.es/ecma262/#sec-promise.prototype.catch
'catch': function (onRejected) {
return this.then(undefined, onRejected);
}
});
OwnPromiseCapability = function () {
var promise = new Internal();
2021-10-29 14:30:00 +08:00
var state = getInternalState$d(promise);
this.promise = promise;
this.resolve = bind(internalResolve, state);
this.reject = bind(internalReject, state);
};
newPromiseCapability$1.f = newPromiseCapability = function (C) {
return C === PromiseConstructor || C === PromiseWrapper
? new OwnPromiseCapability(C)
: newGenericPromiseCapability(C);
};
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
if (isCallable(nativePromiseConstructor) && NativePromisePrototype !== Object.prototype) {
nativeThen = NativePromisePrototype.then;
if (!SUBCLASSING) {
// make `Promise#then` return a polyfilled `Promise` for native promise-based APIs
redefine(NativePromisePrototype, 'then', function then(onFulfilled, onRejected) {
var that = this;
return new PromiseConstructor(function (resolve, reject) {
2021-10-29 14:30:00 +08:00
functionCall(nativeThen, that, resolve, reject);
}).then(onFulfilled, onRejected);
// https://github.com/zloirock/core-js/issues/640
}, { unsafe: true });
// makes sure that native promise-based APIs `Promise#catch` properly works with patched `Promise#then`
2021-10-29 14:30:00 +08:00
redefine(NativePromisePrototype, 'catch', PromisePrototype['catch'], { unsafe: true });
}
// make `.constructor === Promise` work for native promise-based APIs
try {
delete NativePromisePrototype.constructor;
} catch (error) { /* empty */ }
// make `instanceof Promise` work for native promise-based APIs
if (objectSetPrototypeOf) {
2021-10-29 14:30:00 +08:00
objectSetPrototypeOf(NativePromisePrototype, PromisePrototype);
}
}
}
2021-10-29 14:30:00 +08:00
_export({ global: true, wrap: true, forced: FORCED$c }, {
Promise: PromiseConstructor
});
2021-09-22 10:28:02 +08:00
setToStringTag(PromiseConstructor, PROMISE, false);
setSpecies(PROMISE);
PromiseWrapper = getBuiltIn(PROMISE);
// statics
2021-10-29 14:30:00 +08:00
_export({ target: PROMISE, stat: true, forced: FORCED$c }, {
// `Promise.reject` method
// https://tc39.es/ecma262/#sec-promise.reject
reject: function reject(r) {
var capability = newPromiseCapability(this);
2021-10-29 14:30:00 +08:00
functionCall(capability.reject, undefined, r);
return capability.promise;
}
});
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
_export({ target: PROMISE, stat: true, forced: FORCED$c }, {
// `Promise.resolve` method
// https://tc39.es/ecma262/#sec-promise.resolve
resolve: function resolve(x) {
return promiseResolve(this, x);
}
});
2021-09-22 10:28:02 +08:00
_export({ target: PROMISE, stat: true, forced: INCORRECT_ITERATION }, {
// `Promise.all` method
// https://tc39.es/ecma262/#sec-promise.all
all: function all(iterable) {
var C = this;
var capability = newPromiseCapability(C);
var resolve = capability.resolve;
var reject = capability.reject;
var result = perform(function () {
2021-10-29 14:30:00 +08:00
var $promiseResolve = aCallable(C.resolve);
var values = [];
var counter = 0;
var remaining = 1;
iterate(iterable, function (promise) {
var index = counter++;
var alreadyCalled = false;
remaining++;
2021-10-29 14:30:00 +08:00
functionCall($promiseResolve, C, promise).then(function (value) {
if (alreadyCalled) { return; }
alreadyCalled = true;
values[index] = value;
--remaining || resolve(values);
}, reject);
});
--remaining || resolve(values);
});
if (result.error) { reject(result.value); }
return capability.promise;
},
// `Promise.race` method
// https://tc39.es/ecma262/#sec-promise.race
race: function race(iterable) {
var C = this;
var capability = newPromiseCapability(C);
var reject = capability.reject;
var result = perform(function () {
2021-10-29 14:30:00 +08:00
var $promiseResolve = aCallable(C.resolve);
iterate(iterable, function (promise) {
2021-10-29 14:30:00 +08:00
functionCall($promiseResolve, C, promise).then(capability.resolve, reject);
});
});
if (result.error) { reject(result.value); }
return capability.promise;
}
});
2021-09-22 10:28:02 +08:00
// `Promise.allSettled` method
// https://tc39.es/ecma262/#sec-promise.allsettled
_export({ target: 'Promise', stat: true }, {
allSettled: function allSettled(iterable) {
var C = this;
var capability = newPromiseCapability$1.f(C);
var resolve = capability.resolve;
var reject = capability.reject;
var result = perform(function () {
2021-10-29 14:30:00 +08:00
var promiseResolve = aCallable(C.resolve);
var values = [];
var counter = 0;
var remaining = 1;
iterate(iterable, function (promise) {
var index = counter++;
var alreadyCalled = false;
remaining++;
2021-10-29 14:30:00 +08:00
functionCall(promiseResolve, C, promise).then(function (value) {
if (alreadyCalled) { return; }
alreadyCalled = true;
values[index] = { status: 'fulfilled', value: value };
--remaining || resolve(values);
}, function (error) {
if (alreadyCalled) { return; }
alreadyCalled = true;
values[index] = { status: 'rejected', reason: error };
--remaining || resolve(values);
});
});
--remaining || resolve(values);
});
if (result.error) { reject(result.value); }
return capability.promise;
}
});
2021-09-22 10:28:02 +08:00
var PROMISE_ANY_ERROR = 'No one promise resolved';
2021-09-22 10:28:02 +08:00
// `Promise.any` method
// https://tc39.es/ecma262/#sec-promise.any
_export({ target: 'Promise', stat: true }, {
any: function any(iterable) {
var C = this;
2021-10-29 14:30:00 +08:00
var AggregateError = getBuiltIn('AggregateError');
var capability = newPromiseCapability$1.f(C);
var resolve = capability.resolve;
var reject = capability.reject;
var result = perform(function () {
2021-10-29 14:30:00 +08:00
var promiseResolve = aCallable(C.resolve);
var errors = [];
var counter = 0;
var remaining = 1;
var alreadyResolved = false;
iterate(iterable, function (promise) {
var index = counter++;
var alreadyRejected = false;
remaining++;
2021-10-29 14:30:00 +08:00
functionCall(promiseResolve, C, promise).then(function (value) {
if (alreadyRejected || alreadyResolved) { return; }
alreadyResolved = true;
resolve(value);
}, function (error) {
if (alreadyRejected || alreadyResolved) { return; }
alreadyRejected = true;
errors[index] = error;
2021-10-29 14:30:00 +08:00
--remaining || reject(new AggregateError(errors, PROMISE_ANY_ERROR));
});
});
2021-10-29 14:30:00 +08:00
--remaining || reject(new AggregateError(errors, PROMISE_ANY_ERROR));
});
if (result.error) { reject(result.value); }
return capability.promise;
}
});
2021-09-22 10:28:02 +08:00
// Safari bug https://bugs.webkit.org/show_bug.cgi?id=200829
var NON_GENERIC = !!nativePromiseConstructor && fails(function () {
nativePromiseConstructor.prototype['finally'].call({ then: function () { /* empty */ } }, function () { /* empty */ });
});
2020-01-17 14:55:39 +08:00
// `Promise.prototype.finally` method
// https://tc39.es/ecma262/#sec-promise.prototype.finally
_export({ target: 'Promise', proto: true, real: true, forced: NON_GENERIC }, {
'finally': function (onFinally) {
var C = speciesConstructor(this, getBuiltIn('Promise'));
2021-10-29 14:30:00 +08:00
var isFunction = isCallable(onFinally);
return this.then(
isFunction ? function (x) {
return promiseResolve(C, onFinally()).then(function () { return x; });
} : onFinally,
isFunction ? function (e) {
return promiseResolve(C, onFinally()).then(function () { throw e; });
} : onFinally
);
}
});
2020-01-17 14:55:39 +08:00
// makes sure that native promise-based APIs `Promise#finally` properly works with patched `Promise#then`
2021-10-29 14:30:00 +08:00
if (isCallable(nativePromiseConstructor)) {
var method = getBuiltIn('Promise').prototype['finally'];
if (nativePromiseConstructor.prototype['finally'] !== method) {
redefine(nativePromiseConstructor.prototype, 'finally', method, { unsafe: true });
}
}
2021-09-22 10:28:02 +08:00
// MS Edge argumentsList argument is optional
var OPTIONAL_ARGUMENTS_LIST = !fails(function () {
2021-10-29 14:30:00 +08:00
// eslint-disable-next-line es/no-reflect -- required for testing
Reflect.apply(function () { /* empty */ });
});
2020-01-17 14:55:39 +08:00
// `Reflect.apply` method
// https://tc39.es/ecma262/#sec-reflect.apply
_export({ target: 'Reflect', stat: true, forced: OPTIONAL_ARGUMENTS_LIST }, {
apply: function apply(target, thisArgument, argumentsList) {
2021-10-29 14:30:00 +08:00
return functionApply(aCallable(target), thisArgument, anObject(argumentsList));
}
});
2020-01-17 14:55:39 +08:00
var nativeConstruct = getBuiltIn('Reflect', 'construct');
2021-10-29 14:30:00 +08:00
var ObjectPrototype = Object.prototype;
var push$d = [].push;
2020-01-17 14:55:39 +08:00
// `Reflect.construct` method
// https://tc39.es/ecma262/#sec-reflect.construct
// MS Edge supports only 2 arguments and argumentsList argument is optional
// FF Nightly sets third argument as `new.target`, but does not create `this` from it
var NEW_TARGET_BUG = fails(function () {
function F() { /* empty */ }
return !(nativeConstruct(function () { /* empty */ }, [], F) instanceof F);
});
2021-10-29 14:30:00 +08:00
var ARGS_BUG = !fails(function () {
nativeConstruct(function () { /* empty */ });
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var FORCED$b = NEW_TARGET_BUG || ARGS_BUG;
_export({ target: 'Reflect', stat: true, forced: FORCED$b, sham: FORCED$b }, {
construct: function construct(Target, args /* , newTarget */) {
2021-10-29 14:30:00 +08:00
aConstructor(Target);
anObject(args);
2021-10-29 14:30:00 +08:00
var newTarget = arguments.length < 3 ? Target : aConstructor(arguments[2]);
if (ARGS_BUG && !NEW_TARGET_BUG) { return nativeConstruct(Target, args, newTarget); }
if (Target == newTarget) {
// w/o altered newTarget, optimization for 0-4 arguments
switch (args.length) {
case 0: return new Target();
case 1: return new Target(args[0]);
case 2: return new Target(args[0], args[1]);
case 3: return new Target(args[0], args[1], args[2]);
case 4: return new Target(args[0], args[1], args[2], args[3]);
}
// w/o altered newTarget, lot of arguments case
var $args = [null];
2021-10-29 14:30:00 +08:00
functionApply(push$d, $args, args);
return new (functionApply(functionBind, Target, $args))();
}
// with altered newTarget, not support built-in constructors
var proto = newTarget.prototype;
2021-10-29 14:30:00 +08:00
var instance = objectCreate(isObject(proto) ? proto : ObjectPrototype);
var result = functionApply(Target, instance, args);
return isObject(result) ? result : instance;
}
});
2021-09-22 10:28:02 +08:00
// MS Edge has broken Reflect.defineProperty - throwing instead of returning false
var ERROR_INSTEAD_OF_FALSE = fails(function () {
// eslint-disable-next-line es/no-reflect -- required for testing
Reflect.defineProperty(objectDefineProperty.f({}, 1, { value: 1 }), 1, { value: 2 });
});
// `Reflect.defineProperty` method
// https://tc39.es/ecma262/#sec-reflect.defineproperty
_export({ target: 'Reflect', stat: true, forced: ERROR_INSTEAD_OF_FALSE, sham: !descriptors }, {
defineProperty: function defineProperty(target, propertyKey, attributes) {
anObject(target);
2021-10-29 14:30:00 +08:00
var key = toPropertyKey(propertyKey);
anObject(attributes);
try {
objectDefineProperty.f(target, key, attributes);
return true;
} catch (error) {
return false;
2021-09-01 10:47:40 +08:00
}
}
});
2021-09-22 10:28:02 +08:00
var getOwnPropertyDescriptor$2 = objectGetOwnPropertyDescriptor.f;
2021-09-22 10:28:02 +08:00
// `Reflect.deleteProperty` method
// https://tc39.es/ecma262/#sec-reflect.deleteproperty
_export({ target: 'Reflect', stat: true }, {
deleteProperty: function deleteProperty(target, propertyKey) {
var descriptor = getOwnPropertyDescriptor$2(anObject(target), propertyKey);
return descriptor && !descriptor.configurable ? false : delete target[propertyKey];
}
});
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
var isDataDescriptor = function (descriptor) {
return descriptor !== undefined && (hasOwnProperty_1(descriptor, 'value') || hasOwnProperty_1(descriptor, 'writable'));
};
// `Reflect.get` method
// https://tc39.es/ecma262/#sec-reflect.get
function get(target, propertyKey /* , receiver */) {
var receiver = arguments.length < 3 ? target : arguments[2];
var descriptor, prototype;
if (anObject(target) === receiver) { return target[propertyKey]; }
2021-10-29 14:30:00 +08:00
descriptor = objectGetOwnPropertyDescriptor.f(target, propertyKey);
if (descriptor) { return isDataDescriptor(descriptor)
? descriptor.value
2021-10-29 14:30:00 +08:00
: descriptor.get === undefined ? undefined : functionCall(descriptor.get, receiver); }
if (isObject(prototype = objectGetPrototypeOf(target))) { return get(prototype, propertyKey, receiver); }
}
2021-09-22 10:28:02 +08:00
_export({ target: 'Reflect', stat: true }, {
get: get
});
2021-09-22 10:28:02 +08:00
// `Reflect.getOwnPropertyDescriptor` method
// https://tc39.es/ecma262/#sec-reflect.getownpropertydescriptor
_export({ target: 'Reflect', stat: true, sham: !descriptors }, {
getOwnPropertyDescriptor: function getOwnPropertyDescriptor(target, propertyKey) {
return objectGetOwnPropertyDescriptor.f(anObject(target), propertyKey);
}
});
2020-01-17 14:55:39 +08:00
// `Reflect.getPrototypeOf` method
// https://tc39.es/ecma262/#sec-reflect.getprototypeof
_export({ target: 'Reflect', stat: true, sham: !correctPrototypeGetter }, {
getPrototypeOf: function getPrototypeOf(target) {
return objectGetPrototypeOf(anObject(target));
}
});
2021-09-22 10:28:02 +08:00
// `Reflect.has` method
// https://tc39.es/ecma262/#sec-reflect.has
_export({ target: 'Reflect', stat: true }, {
has: function has(target, propertyKey) {
return propertyKey in target;
2021-05-12 15:34:21 +08:00
}
});
2021-09-22 10:28:02 +08:00
// eslint-disable-next-line es/no-object-isextensible -- safe
var objectIsExtensible = Object.isExtensible;
2021-09-22 10:28:02 +08:00
// `Reflect.isExtensible` method
// https://tc39.es/ecma262/#sec-reflect.isextensible
_export({ target: 'Reflect', stat: true }, {
isExtensible: function isExtensible(target) {
anObject(target);
return objectIsExtensible ? objectIsExtensible(target) : true;
}
});
2021-09-22 10:28:02 +08:00
// `Reflect.ownKeys` method
// https://tc39.es/ecma262/#sec-reflect.ownkeys
_export({ target: 'Reflect', stat: true }, {
ownKeys: ownKeys
});
2020-01-17 14:55:39 +08:00
// `Reflect.preventExtensions` method
// https://tc39.es/ecma262/#sec-reflect.preventextensions
_export({ target: 'Reflect', stat: true, sham: !freezing }, {
preventExtensions: function preventExtensions(target) {
anObject(target);
try {
var objectPreventExtensions = getBuiltIn('Object', 'preventExtensions');
if (objectPreventExtensions) { objectPreventExtensions(target); }
return true;
} catch (error) {
return false;
}
}
});
2020-01-17 14:55:39 +08:00
// `Reflect.set` method
// https://tc39.es/ecma262/#sec-reflect.set
function set(target, propertyKey, V /* , receiver */) {
var receiver = arguments.length < 4 ? target : arguments[3];
var ownDescriptor = objectGetOwnPropertyDescriptor.f(anObject(target), propertyKey);
2021-10-29 14:30:00 +08:00
var existingDescriptor, prototype, setter;
if (!ownDescriptor) {
if (isObject(prototype = objectGetPrototypeOf(target))) {
return set(prototype, propertyKey, V, receiver);
}
ownDescriptor = createPropertyDescriptor(0);
}
2021-10-29 14:30:00 +08:00
if (isDataDescriptor(ownDescriptor)) {
if (ownDescriptor.writable === false || !isObject(receiver)) { return false; }
if (existingDescriptor = objectGetOwnPropertyDescriptor.f(receiver, propertyKey)) {
if (existingDescriptor.get || existingDescriptor.set || existingDescriptor.writable === false) { return false; }
existingDescriptor.value = V;
objectDefineProperty.f(receiver, propertyKey, existingDescriptor);
} else { objectDefineProperty.f(receiver, propertyKey, createPropertyDescriptor(0, V)); }
2021-10-29 14:30:00 +08:00
} else {
setter = ownDescriptor.set;
if (setter === undefined) { return false; }
functionCall(setter, receiver, V);
} return true;
}
2020-01-17 14:55:39 +08:00
// MS Edge 17-18 Reflect.set allows setting the property to object
// with non-writable property on the prototype
var MS_EDGE_BUG = fails(function () {
var Constructor = function () { /* empty */ };
var object = objectDefineProperty.f(new Constructor(), 'a', { configurable: true });
// eslint-disable-next-line es/no-reflect -- required for testing
return Reflect.set(Constructor.prototype, 'a', 1, object) !== false;
});
_export({ target: 'Reflect', stat: true, forced: MS_EDGE_BUG }, {
set: set
});
// `Reflect.setPrototypeOf` method
// https://tc39.es/ecma262/#sec-reflect.setprototypeof
if (objectSetPrototypeOf) { _export({ target: 'Reflect', stat: true }, {
setPrototypeOf: function setPrototypeOf(target, proto) {
anObject(target);
aPossiblePrototype(proto);
try {
objectSetPrototypeOf(target, proto);
return true;
} catch (error) {
return false;
}
}
}); }
_export({ global: true }, { Reflect: {} });
// Reflect[@@toStringTag] property
// https://tc39.es/ecma262/#sec-reflect-@@tostringtag
setToStringTag(global_1.Reflect, 'Reflect', true);
var MATCH$2 = wellKnownSymbol('match');
2020-01-17 14:55:39 +08:00
// `IsRegExp` abstract operation
// https://tc39.es/ecma262/#sec-isregexp
var isRegexp = function (it) {
var isRegExp;
return isObject(it) && ((isRegExp = it[MATCH$2]) !== undefined ? !!isRegExp : classofRaw(it) == 'RegExp');
2021-09-22 10:28:02 +08:00
};
// `RegExp.prototype.flags` getter implementation
// https://tc39.es/ecma262/#sec-get-regexp.prototype.flags
var regexpFlags = function () {
var that = anObject(this);
var result = '';
if (that.global) { result += 'g'; }
if (that.ignoreCase) { result += 'i'; }
if (that.multiline) { result += 'm'; }
if (that.dotAll) { result += 's'; }
if (that.unicode) { result += 'u'; }
if (that.sticky) { result += 'y'; }
return result;
};
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
// babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
var $RegExp$2 = global_1.RegExp;
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
var UNSUPPORTED_Y$4 = fails(function () {
var re = $RegExp$2('a', 'y');
re.lastIndex = 2;
return re.exec('abcd') != null;
});
2021-09-22 10:28:02 +08:00
var BROKEN_CARET = fails(function () {
// https://bugzilla.mozilla.org/show_bug.cgi?id=773687
2021-10-29 14:30:00 +08:00
var re = $RegExp$2('^r', 'gy');
re.lastIndex = 2;
return re.exec('str') != null;
});
2021-09-22 10:28:02 +08:00
var regexpStickyHelpers = {
2021-10-29 14:30:00 +08:00
UNSUPPORTED_Y: UNSUPPORTED_Y$4,
BROKEN_CARET: BROKEN_CARET
};
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
// babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
var $RegExp$1 = global_1.RegExp;
var regexpUnsupportedDotAll = fails(function () {
var re = $RegExp$1('.', 's');
return !(re.dotAll && re.exec('\n') && re.flags === 's');
});
// babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
var $RegExp = global_1.RegExp;
var regexpUnsupportedNcg = fails(function () {
var re = $RegExp('(?<a>b)', 'g');
return re.exec('b').groups.a !== 'b' ||
'b'.replace(re, '$<a>c') !== 'bc';
});
var defineProperty$5 = objectDefineProperty.f;
var getOwnPropertyNames = objectGetOwnPropertyNames.f;
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
var enforceInternalState = internalState.enforce;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var MATCH$1 = wellKnownSymbol('match');
var NativeRegExp = global_1.RegExp;
2021-10-29 14:30:00 +08:00
var RegExpPrototype$7 = NativeRegExp.prototype;
var SyntaxError$1 = global_1.SyntaxError;
var getFlags$3 = functionUncurryThis(regexpFlags);
var exec$5 = functionUncurryThis(RegExpPrototype$7.exec);
var charAt$c = functionUncurryThis(''.charAt);
var replace$6 = functionUncurryThis(''.replace);
var stringIndexOf$4 = functionUncurryThis(''.indexOf);
var stringSlice$c = functionUncurryThis(''.slice);
// TODO: Use only propper RegExpIdentifierName
var IS_NCG = /^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/;
var re1 = /a/g;
var re2 = /a/g;
2020-01-17 14:55:39 +08:00
// "new" should create a new object, old webkit bug
var CORRECT_NEW = new NativeRegExp(re1) !== re1;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var UNSUPPORTED_Y$3 = regexpStickyHelpers.UNSUPPORTED_Y;
var BASE_FORCED = descriptors &&
(!CORRECT_NEW || UNSUPPORTED_Y$3 || regexpUnsupportedDotAll || regexpUnsupportedNcg || fails(function () {
re2[MATCH$1] = false;
// RegExp constructor can alter flags and IsRegExp works correct with @@match
return NativeRegExp(re1) != re1 || NativeRegExp(re2) == re2 || NativeRegExp(re1, 'i') != '/a/i';
}));
var handleDotAll = function (string) {
var length = string.length;
var index = 0;
var result = '';
var brackets = false;
var chr;
for (; index <= length; index++) {
chr = charAt$c(string, index);
if (chr === '\\') {
result += chr + charAt$c(string, ++index);
continue;
}
if (!brackets && chr === '.') {
result += '[\\s\\S]';
} else {
if (chr === '[') {
brackets = true;
} else if (chr === ']') {
brackets = false;
} result += chr;
}
} return result;
};
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var handleNCG = function (string) {
var length = string.length;
var index = 0;
var result = '';
var named = [];
var names = {};
var brackets = false;
var ncg = false;
var groupid = 0;
var groupname = '';
var chr;
for (; index <= length; index++) {
chr = charAt$c(string, index);
if (chr === '\\') {
chr = chr + charAt$c(string, ++index);
} else if (chr === ']') {
brackets = false;
} else if (!brackets) { switch (true) {
case chr === '[':
brackets = true;
break;
case chr === '(':
if (exec$5(IS_NCG, stringSlice$c(string, index + 1))) {
index += 2;
ncg = true;
}
result += chr;
groupid++;
continue;
case chr === '>' && ncg:
if (groupname === '' || hasOwnProperty_1(names, groupname)) {
throw new SyntaxError$1('Invalid capture group name');
}
names[groupname] = true;
named[named.length] = [groupname, groupid];
ncg = false;
groupname = '';
continue;
} }
if (ncg) { groupname += chr; }
else { result += chr; }
} return [result, named];
};
2020-01-17 14:55:39 +08:00
// `RegExp` constructor
// https://tc39.es/ecma262/#sec-regexp-constructor
2021-10-29 14:30:00 +08:00
if (isForced_1('RegExp', BASE_FORCED)) {
var RegExpWrapper = function RegExp(pattern, flags) {
2021-10-29 14:30:00 +08:00
var thisIsRegExp = objectIsPrototypeOf(RegExpPrototype$7, this);
var patternIsRegExp = isRegexp(pattern);
var flagsAreUndefined = flags === undefined;
2021-10-29 14:30:00 +08:00
var groups = [];
var rawPattern = pattern;
var rawFlags, dotAll, sticky, handled, result, state;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
if (!thisIsRegExp && patternIsRegExp && flagsAreUndefined && pattern.constructor === RegExpWrapper) {
return pattern;
}
2021-10-29 14:30:00 +08:00
if (patternIsRegExp || objectIsPrototypeOf(RegExpPrototype$7, pattern)) {
pattern = pattern.source;
2021-10-29 14:30:00 +08:00
if (flagsAreUndefined) { flags = 'flags' in rawPattern ? rawPattern.flags : getFlags$3(rawPattern); }
}
pattern = pattern === undefined ? '' : toString_1(pattern);
flags = flags === undefined ? '' : toString_1(flags);
rawPattern = pattern;
if (regexpUnsupportedDotAll && 'dotAll' in re1) {
dotAll = !!flags && stringIndexOf$4(flags, 's') > -1;
if (dotAll) { flags = replace$6(flags, /s/g, ''); }
}
2021-10-29 14:30:00 +08:00
rawFlags = flags;
if (UNSUPPORTED_Y$3 && 'sticky' in re1) {
sticky = !!flags && stringIndexOf$4(flags, 'y') > -1;
if (sticky) { flags = replace$6(flags, /y/g, ''); }
}
2021-10-29 14:30:00 +08:00
if (regexpUnsupportedNcg) {
handled = handleNCG(pattern);
pattern = handled[0];
groups = handled[1];
}
result = inheritIfRequired(NativeRegExp(pattern, flags), thisIsRegExp ? this : RegExpPrototype$7, RegExpWrapper);
2021-10-29 14:30:00 +08:00
if (dotAll || sticky || groups.length) {
state = enforceInternalState(result);
if (dotAll) {
state.dotAll = true;
state.raw = RegExpWrapper(handleDotAll(pattern), rawFlags);
}
if (sticky) { state.sticky = true; }
if (groups.length) { state.groups = groups; }
}
2021-10-29 14:30:00 +08:00
if (pattern !== rawPattern) { try {
// fails in old engines, but we have no alternatives for unsupported regex syntax
createNonEnumerableProperty(result, 'source', rawPattern === '' ? '(?:)' : rawPattern);
} catch (error) { /* empty */ } }
return result;
2021-09-22 10:28:02 +08:00
};
2021-10-29 14:30:00 +08:00
var proxy = function (key) {
2021-10-29 14:30:00 +08:00
key in RegExpWrapper || defineProperty$5(RegExpWrapper, key, {
configurable: true,
get: function () { return NativeRegExp[key]; },
set: function (it) { NativeRegExp[key] = it; }
});
};
2021-10-29 14:30:00 +08:00
for (var keys = getOwnPropertyNames(NativeRegExp), index = 0; keys.length > index;) {
proxy(keys[index++]);
}
RegExpPrototype$7.constructor = RegExpWrapper;
RegExpWrapper.prototype = RegExpPrototype$7;
redefine(global_1, 'RegExp', RegExpWrapper);
}
2020-01-17 14:55:39 +08:00
// https://tc39.es/ecma262/#sec-get-regexp-@@species
setSpecies('RegExp');
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var defineProperty$4 = objectDefineProperty.f;
var getInternalState$c = internalState.get;
var RegExpPrototype$6 = RegExp.prototype;
var TypeError$k = global_1.TypeError;
// `RegExp.prototype.dotAll` getter
// https://tc39.es/ecma262/#sec-get-regexp.prototype.dotall
if (descriptors && regexpUnsupportedDotAll) {
defineProperty$4(RegExpPrototype$6, 'dotAll', {
configurable: true,
get: function () {
if (this === RegExpPrototype$6) { return undefined; }
// We can't use InternalStateModule.getterFor because
// we don't add metadata for regexps created by a literal.
if (classofRaw(this) === 'RegExp') {
return !!getInternalState$c(this).dotAll;
}
throw TypeError$k('Incompatible receiver, RegExp required');
}
});
}
/* eslint-disable regexp/no-empty-capturing-group, regexp/no-empty-group, regexp/no-lazy-ends -- testing */
/* eslint-disable regexp/no-useless-quantifier -- testing */
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var getInternalState$b = internalState.get;
var nativeReplace = shared('native-string-replace', String.prototype.replace);
var nativeExec = RegExp.prototype.exec;
var patchedExec = nativeExec;
2021-10-29 14:30:00 +08:00
var charAt$b = functionUncurryThis(''.charAt);
var indexOf$1 = functionUncurryThis(''.indexOf);
var replace$5 = functionUncurryThis(''.replace);
var stringSlice$b = functionUncurryThis(''.slice);
var UPDATES_LAST_INDEX_WRONG = (function () {
var re1 = /a/;
var re2 = /b*/g;
2021-10-29 14:30:00 +08:00
functionCall(nativeExec, re1, 'a');
functionCall(nativeExec, re2, 'a');
return re1.lastIndex !== 0 || re2.lastIndex !== 0;
})();
2021-10-29 14:30:00 +08:00
var UNSUPPORTED_Y$2 = regexpStickyHelpers.UNSUPPORTED_Y || regexpStickyHelpers.BROKEN_CARET;
// nonparticipating capturing group, copied from es5-shim's String#split patch.
var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;
2021-10-29 14:30:00 +08:00
var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y$2 || regexpUnsupportedDotAll || regexpUnsupportedNcg;
if (PATCH) {
2021-10-29 14:30:00 +08:00
// eslint-disable-next-line max-statements -- TODO
patchedExec = function exec(string) {
var re = this;
2021-10-29 14:30:00 +08:00
var state = getInternalState$b(re);
var str = toString_1(string);
var raw = state.raw;
var result, reCopy, lastIndex, match, i, object, group;
if (raw) {
raw.lastIndex = re.lastIndex;
result = functionCall(patchedExec, raw, str);
re.lastIndex = raw.lastIndex;
return result;
}
var groups = state.groups;
var sticky = UNSUPPORTED_Y$2 && re.sticky;
var flags = functionCall(regexpFlags, re);
var source = re.source;
var charsAdded = 0;
var strCopy = str;
if (sticky) {
2021-10-29 14:30:00 +08:00
flags = replace$5(flags, 'y', '');
if (indexOf$1(flags, 'g') === -1) {
flags += 'g';
}
2021-10-29 14:30:00 +08:00
strCopy = stringSlice$b(str, re.lastIndex);
// Support anchored sticky behavior.
2021-10-29 14:30:00 +08:00
if (re.lastIndex > 0 && (!re.multiline || re.multiline && charAt$b(str, re.lastIndex - 1) !== '\n')) {
source = '(?: ' + source + ')';
strCopy = ' ' + strCopy;
charsAdded++;
}
// ^(? + rx + ) is needed, in combination with some str slicing, to
// simulate the 'y' flag.
reCopy = new RegExp('^(?:' + source + ')', flags);
}
2020-01-17 14:55:39 +08:00
if (NPCG_INCLUDED) {
reCopy = new RegExp('^' + source + '$(?!\\s)', flags);
}
if (UPDATES_LAST_INDEX_WRONG) { lastIndex = re.lastIndex; }
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
match = functionCall(nativeExec, sticky ? reCopy : re, strCopy);
if (sticky) {
if (match) {
2021-10-29 14:30:00 +08:00
match.input = stringSlice$b(match.input, charsAdded);
match[0] = stringSlice$b(match[0], charsAdded);
match.index = re.lastIndex;
re.lastIndex += match[0].length;
} else { re.lastIndex = 0; }
} else if (UPDATES_LAST_INDEX_WRONG && match) {
re.lastIndex = re.global ? match.index + match[0].length : lastIndex;
}
if (NPCG_INCLUDED && match && match.length > 1) {
// Fix browsers whose `exec` methods don't consistently return `undefined`
// for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/
2021-10-29 14:30:00 +08:00
functionCall(nativeReplace, match[0], reCopy, function () {
var arguments$1 = arguments;
for (i = 1; i < arguments.length - 2; i++) {
if (arguments$1[i] === undefined) { match[i] = undefined; }
}
});
2021-09-22 10:28:02 +08:00
}
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
if (match && groups) {
match.groups = object = objectCreate(null);
for (i = 0; i < groups.length; i++) {
group = groups[i];
object[group[0]] = match[group[1]];
}
}
return match;
};
}
2021-05-12 15:34:21 +08:00
var regexpExec = patchedExec;
2021-05-12 15:34:21 +08:00
// `RegExp.prototype.exec` method
// https://tc39.es/ecma262/#sec-regexp.prototype.exec
_export({ target: 'RegExp', proto: true, forced: /./.exec !== regexpExec }, {
exec: regexpExec
});
2021-05-12 15:34:21 +08:00
2021-10-29 14:30:00 +08:00
var RegExpPrototype$5 = RegExp.prototype;
var FORCED$a = descriptors && fails(function () {
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
return Object.getOwnPropertyDescriptor(RegExpPrototype$5, 'flags').get.call({ dotAll: true, sticky: true }) !== 'sy';
});
2021-05-12 15:34:21 +08:00
// `RegExp.prototype.flags` getter
// https://tc39.es/ecma262/#sec-get-regexp.prototype.flags
2021-10-29 14:30:00 +08:00
if (FORCED$a) { objectDefineProperty.f(RegExpPrototype$5, 'flags', {
configurable: true,
get: regexpFlags
}); }
2020-01-17 14:55:39 +08:00
var UNSUPPORTED_Y$1 = regexpStickyHelpers.UNSUPPORTED_Y;
2021-10-29 14:30:00 +08:00
var defineProperty$3 = objectDefineProperty.f;
2021-10-29 14:30:00 +08:00
var getInternalState$a = internalState.get;
var RegExpPrototype$4 = RegExp.prototype;
2021-10-29 14:30:00 +08:00
var TypeError$j = global_1.TypeError;
// `RegExp.prototype.sticky` getter
// https://tc39.es/ecma262/#sec-get-regexp.prototype.sticky
if (descriptors && UNSUPPORTED_Y$1) {
2021-10-29 14:30:00 +08:00
defineProperty$3(RegExpPrototype$4, 'sticky', {
configurable: true,
get: function () {
if (this === RegExpPrototype$4) { return undefined; }
// We can't use InternalStateModule.getterFor because
// we don't add metadata for regexps created by a literal.
2021-10-29 14:30:00 +08:00
if (classofRaw(this) === 'RegExp') {
return !!getInternalState$a(this).sticky;
}
2021-10-29 14:30:00 +08:00
throw TypeError$j('Incompatible receiver, RegExp required');
}
});
}
// TODO: Remove from `core-js@4` since it's moved to entry points
2021-10-29 14:30:00 +08:00
var DELEGATES_TO_EXEC = function () {
var execCalled = false;
var re = /[ac]/;
re.exec = function () {
execCalled = true;
return /./.exec.apply(this, arguments);
};
return re.test('abc') === true && execCalled;
}();
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var Error$1 = global_1.Error;
var un$Test = functionUncurryThis(/./.test);
// `RegExp.prototype.test` method
// https://tc39.es/ecma262/#sec-regexp.prototype.test
_export({ target: 'RegExp', proto: true, forced: !DELEGATES_TO_EXEC }, {
test: function (str) {
2021-10-29 14:30:00 +08:00
var exec = this.exec;
if (!isCallable(exec)) { return un$Test(this, str); }
var result = functionCall(exec, this, str);
if (result !== null && !isObject(result)) {
2021-10-29 14:30:00 +08:00
throw new Error$1('RegExp exec method returned something other than an Object or null');
}
return !!result;
}
});
2021-10-29 14:30:00 +08:00
var PROPER_FUNCTION_NAME$2 = functionName.PROPER;
var TO_STRING = 'toString';
var RegExpPrototype$3 = RegExp.prototype;
2021-10-29 14:30:00 +08:00
var n$ToString = RegExpPrototype$3[TO_STRING];
var getFlags$2 = functionUncurryThis(regexpFlags);
2021-10-29 14:30:00 +08:00
var NOT_GENERIC = fails(function () { return n$ToString.call({ source: 'a', flags: 'b' }) != '/a/b'; });
// FF44- RegExp#toString has a wrong name
2021-10-29 14:30:00 +08:00
var INCORRECT_NAME = PROPER_FUNCTION_NAME$2 && n$ToString.name != TO_STRING;
// `RegExp.prototype.toString` method
// https://tc39.es/ecma262/#sec-regexp.prototype.tostring
if (NOT_GENERIC || INCORRECT_NAME) {
redefine(RegExp.prototype, TO_STRING, function toString() {
var R = anObject(this);
2021-10-29 14:30:00 +08:00
var p = toString_1(R.source);
var rf = R.flags;
2021-10-29 14:30:00 +08:00
var f = toString_1(rf === undefined && objectIsPrototypeOf(RegExpPrototype$3, R) && !('flags' in RegExpPrototype$3) ? getFlags$2(R) : rf);
return '/' + p + '/' + f;
}, { unsafe: true });
}
2020-01-17 14:55:39 +08:00
// `Set` constructor
// https://tc39.es/ecma262/#sec-set-objects
2021-10-29 14:30:00 +08:00
collection('Set', function (init) {
return function Set() { return init(this, arguments.length ? arguments[0] : undefined); };
}, collectionStrong);
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var charAt$a = functionUncurryThis(''.charAt);
var FORCED$9 = fails(function () {
return '𠮷'.at(0) !== '\uD842';
});
// `String.prototype.at` method
// https://github.com/tc39/proposal-relative-indexing-method
_export({ target: 'String', proto: true, forced: FORCED$9 }, {
at: function at(index) {
var S = toString_1(requireObjectCoercible(this));
var len = S.length;
var relativeIndex = toIntegerOrInfinity(index);
var k = relativeIndex >= 0 ? relativeIndex : len + relativeIndex;
return (k < 0 || k >= len) ? undefined : charAt$a(S, k);
}
});
var charAt$9 = functionUncurryThis(''.charAt);
var charCodeAt$1 = functionUncurryThis(''.charCodeAt);
var stringSlice$a = functionUncurryThis(''.slice);
var createMethod$2 = function (CONVERT_TO_STRING) {
return function ($this, pos) {
2021-10-29 14:30:00 +08:00
var S = toString_1(requireObjectCoercible($this));
var position = toIntegerOrInfinity(pos);
var size = S.length;
var first, second;
if (position < 0 || position >= size) { return CONVERT_TO_STRING ? '' : undefined; }
2021-10-29 14:30:00 +08:00
first = charCodeAt$1(S, position);
return first < 0xD800 || first > 0xDBFF || position + 1 === size
2021-10-29 14:30:00 +08:00
|| (second = charCodeAt$1(S, position + 1)) < 0xDC00 || second > 0xDFFF
? CONVERT_TO_STRING
? charAt$9(S, position)
: first
: CONVERT_TO_STRING
? stringSlice$a(S, position, position + 2)
: (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;
};
};
2020-01-17 14:55:39 +08:00
var stringMultibyte = {
// `String.prototype.codePointAt` method
// https://tc39.es/ecma262/#sec-string.prototype.codepointat
codeAt: createMethod$2(false),
// `String.prototype.at` method
// https://github.com/mathiasbynens/String.prototype.at
charAt: createMethod$2(true)
};
var codeAt$2 = stringMultibyte.codeAt;
// `String.prototype.codePointAt` method
// https://tc39.es/ecma262/#sec-string.prototype.codepointat
_export({ target: 'String', proto: true }, {
codePointAt: function codePointAt(pos) {
return codeAt$2(this, pos);
2021-09-22 10:28:02 +08:00
}
2020-01-17 14:55:39 +08:00
});
2021-10-29 14:30:00 +08:00
var TypeError$i = global_1.TypeError;
var notARegexp = function (it) {
if (isRegexp(it)) {
2021-10-29 14:30:00 +08:00
throw TypeError$i("The method doesn't accept regular expressions");
} return it;
};
var MATCH = wellKnownSymbol('match');
var correctIsRegexpLogic = function (METHOD_NAME) {
var regexp = /./;
try {
'/./'[METHOD_NAME](regexp);
} catch (error1) {
try {
regexp[MATCH] = false;
return '/./'[METHOD_NAME](regexp);
} catch (error2) { /* empty */ }
} return false;
};
var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
2021-10-29 14:30:00 +08:00
// eslint-disable-next-line es/no-string-prototype-endswith -- safe
2021-10-29 14:30:00 +08:00
var un$EndsWith = functionUncurryThis(''.endsWith);
var slice = functionUncurryThis(''.slice);
var min$5 = Math.min;
var CORRECT_IS_REGEXP_LOGIC$1 = correctIsRegexpLogic('endsWith');
// https://github.com/zloirock/core-js/pull/702
var MDN_POLYFILL_BUG$1 = !CORRECT_IS_REGEXP_LOGIC$1 && !!function () {
var descriptor = getOwnPropertyDescriptor$1(String.prototype, 'endsWith');
return descriptor && !descriptor.writable;
}();
// `String.prototype.endsWith` method
// https://tc39.es/ecma262/#sec-string.prototype.endswith
_export({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG$1 && !CORRECT_IS_REGEXP_LOGIC$1 }, {
endsWith: function endsWith(searchString /* , endPosition = @length */) {
2021-10-29 14:30:00 +08:00
var that = toString_1(requireObjectCoercible(this));
notARegexp(searchString);
var endPosition = arguments.length > 1 ? arguments[1] : undefined;
2021-10-29 14:30:00 +08:00
var len = that.length;
var end = endPosition === undefined ? len : min$5(toLength(endPosition), len);
var search = toString_1(searchString);
return un$EndsWith
? un$EndsWith(that, search, end)
: slice(that, end - search.length, end) === search;
2020-01-17 14:55:39 +08:00
}
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var RangeError$6 = global_1.RangeError;
var fromCharCode$2 = String.fromCharCode;
// eslint-disable-next-line es/no-string-fromcodepoint -- required for testing
var $fromCodePoint = String.fromCodePoint;
2021-10-29 14:30:00 +08:00
var join$5 = functionUncurryThis([].join);
2020-01-17 14:55:39 +08:00
// length should be 1, old FF problem
var INCORRECT_LENGTH = !!$fromCodePoint && $fromCodePoint.length != 1;
2020-01-17 14:55:39 +08:00
// `String.fromCodePoint` method
// https://tc39.es/ecma262/#sec-string.fromcodepoint
_export({ target: 'String', stat: true, forced: INCORRECT_LENGTH }, {
// eslint-disable-next-line no-unused-vars -- required for `.length`
fromCodePoint: function fromCodePoint(x) {
var arguments$1 = arguments;
2020-01-17 14:55:39 +08:00
var elements = [];
var length = arguments.length;
var i = 0;
var code;
while (length > i) {
code = +arguments$1[i++];
2021-10-29 14:30:00 +08:00
if (toAbsoluteIndex(code, 0x10FFFF) !== code) { throw RangeError$6(code + ' is not a valid code point'); }
elements[i] = code < 0x10000
? fromCharCode$2(code)
: fromCharCode$2(((code -= 0x10000) >> 10) + 0xD800, code % 0x400 + 0xDC00);
} return join$5(elements, '');
2021-09-22 10:28:02 +08:00
}
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var stringIndexOf$3 = functionUncurryThis(''.indexOf);
// `String.prototype.includes` method
// https://tc39.es/ecma262/#sec-string.prototype.includes
_export({ target: 'String', proto: true, forced: !correctIsRegexpLogic('includes') }, {
includes: function includes(searchString /* , position = 0 */) {
2021-10-29 14:30:00 +08:00
return !!~stringIndexOf$3(
toString_1(requireObjectCoercible(this)),
toString_1(notARegexp(searchString)),
arguments.length > 1 ? arguments[1] : undefined
);
}
2021-09-22 10:28:02 +08:00
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var charAt$8 = stringMultibyte.charAt;
2020-01-17 14:55:39 +08:00
var STRING_ITERATOR$1 = 'String Iterator';
2021-10-29 14:30:00 +08:00
var setInternalState$c = internalState.set;
var getInternalState$9 = internalState.getterFor(STRING_ITERATOR$1);
2020-01-17 14:55:39 +08:00
// `String.prototype[@@iterator]` method
// https://tc39.es/ecma262/#sec-string.prototype-@@iterator
defineIterator(String, 'String', function (iterated) {
2021-10-29 14:30:00 +08:00
setInternalState$c(this, {
type: STRING_ITERATOR$1,
2021-10-29 14:30:00 +08:00
string: toString_1(iterated),
index: 0
});
// `%StringIteratorPrototype%.next` method
// https://tc39.es/ecma262/#sec-%stringiteratorprototype%.next
}, function next() {
2021-10-29 14:30:00 +08:00
var state = getInternalState$9(this);
var string = state.string;
var index = state.index;
var point;
if (index >= string.length) { return { value: undefined, done: true }; }
2021-10-29 14:30:00 +08:00
point = charAt$8(string, index);
state.index += point.length;
return { value: point, done: false };
});
2021-09-22 10:28:02 +08:00
// TODO: Remove from `core-js@4` since it's moved to entry points
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var SPECIES = wellKnownSymbol('species');
var RegExpPrototype$2 = RegExp.prototype;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
var SYMBOL = wellKnownSymbol(KEY);
2020-01-17 14:55:39 +08:00
var DELEGATES_TO_SYMBOL = !fails(function () {
// String methods call symbol-named RegEp methods
var O = {};
O[SYMBOL] = function () { return 7; };
return ''[KEY](O) != 7;
});
2020-01-17 14:55:39 +08:00
var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails(function () {
// Symbol-named RegExp methods call .exec
var execCalled = false;
var re = /a/;
2020-01-17 14:55:39 +08:00
if (KEY === 'split') {
// We can't use real regex here since it causes deoptimization
// and serious performance degradation in V8
// https://github.com/zloirock/core-js/issues/306
re = {};
// RegExp[@@split] doesn't call the regex's exec method, but first creates
// a new one. We need to return the patched regex when creating the new one.
re.constructor = {};
re.constructor[SPECIES] = function () { return re; };
re.flags = '';
re[SYMBOL] = /./[SYMBOL];
}
2020-01-17 14:55:39 +08:00
re.exec = function () { execCalled = true; return null; };
2020-01-17 14:55:39 +08:00
re[SYMBOL]('');
return !execCalled;
});
if (
!DELEGATES_TO_SYMBOL ||
!DELEGATES_TO_EXEC ||
2021-10-29 14:30:00 +08:00
FORCED
) {
2021-10-29 14:30:00 +08:00
var uncurriedNativeRegExpMethod = functionUncurryThis(/./[SYMBOL]);
var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {
2021-10-29 14:30:00 +08:00
var uncurriedNativeMethod = functionUncurryThis(nativeMethod);
var $exec = regexp.exec;
if ($exec === regexpExec || $exec === RegExpPrototype$2.exec) {
if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
// The native String method already delegates to @@method (this
// polyfilled function), leasing to infinite recursion.
// We avoid it by directly calling the native @@method method.
2021-10-29 14:30:00 +08:00
return { done: true, value: uncurriedNativeRegExpMethod(regexp, str, arg2) };
}
2021-10-29 14:30:00 +08:00
return { done: true, value: uncurriedNativeMethod(str, regexp, arg2) };
}
return { done: false };
});
2021-10-29 14:30:00 +08:00
redefine(String.prototype, KEY, methods[0]);
redefine(RegExpPrototype$2, SYMBOL, methods[1]);
2021-09-22 10:28:02 +08:00
}
2021-10-29 14:30:00 +08:00
if (SHAM) { createNonEnumerableProperty(RegExpPrototype$2[SYMBOL], 'sham', true); }
};
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
var charAt$7 = stringMultibyte.charAt;
2021-09-22 10:28:02 +08:00
// `AdvanceStringIndex` abstract operation
// https://tc39.es/ecma262/#sec-advancestringindex
var advanceStringIndex = function (S, index, unicode) {
2021-10-29 14:30:00 +08:00
return index + (unicode ? charAt$7(S, index).length : 1);
};
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
var TypeError$h = global_1.TypeError;
// `RegExpExec` abstract operation
// https://tc39.es/ecma262/#sec-regexpexec
var regexpExecAbstract = function (R, S) {
var exec = R.exec;
2021-10-29 14:30:00 +08:00
if (isCallable(exec)) {
var result = functionCall(exec, R, S);
if (result !== null) { anObject(result); }
return result;
}
2021-10-29 14:30:00 +08:00
if (classofRaw(R) === 'RegExp') { return functionCall(regexpExec, R, S); }
throw TypeError$h('RegExp#exec called on incompatible receiver');
};
2021-09-22 10:28:02 +08:00
// @@match logic
2021-10-29 14:30:00 +08:00
fixRegexpWellKnownSymbolLogic('match', function (MATCH, nativeMatch, maybeCallNative) {
return [
// `String.prototype.match` method
// https://tc39.es/ecma262/#sec-string.prototype.match
function match(regexp) {
var O = requireObjectCoercible(this);
2021-10-29 14:30:00 +08:00
var matcher = regexp == undefined ? undefined : getMethod(regexp, MATCH);
return matcher ? functionCall(matcher, regexp, O) : new RegExp(regexp)[MATCH](toString_1(O));
},
// `RegExp.prototype[@@match]` method
// https://tc39.es/ecma262/#sec-regexp.prototype-@@match
2021-10-29 14:30:00 +08:00
function (string) {
var rx = anObject(this);
var S = toString_1(string);
var res = maybeCallNative(nativeMatch, rx, S);
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
if (res.done) { return res.value; }
2021-09-22 10:28:02 +08:00
if (!rx.global) { return regexpExecAbstract(rx, S); }
2021-09-22 10:28:02 +08:00
var fullUnicode = rx.unicode;
rx.lastIndex = 0;
var A = [];
var n = 0;
var result;
while ((result = regexpExecAbstract(rx, S)) !== null) {
2021-10-29 14:30:00 +08:00
var matchStr = toString_1(result[0]);
A[n] = matchStr;
if (matchStr === '') { rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode); }
n++;
}
return n === 0 ? null : A;
}
];
});
2021-09-22 10:28:02 +08:00
/* eslint-disable es/no-string-prototype-matchall -- safe */
2021-09-22 10:28:02 +08:00
2020-01-17 14:55:39 +08:00
2021-05-12 15:34:21 +08:00
2021-10-29 14:30:00 +08:00
2021-05-12 15:34:21 +08:00
2020-01-17 14:55:39 +08:00
var MATCH_ALL = wellKnownSymbol('matchAll');
var REGEXP_STRING = 'RegExp String';
var REGEXP_STRING_ITERATOR = REGEXP_STRING + ' Iterator';
2021-10-29 14:30:00 +08:00
var setInternalState$b = internalState.set;
var getInternalState$8 = internalState.getterFor(REGEXP_STRING_ITERATOR);
var RegExpPrototype$1 = RegExp.prototype;
2021-10-29 14:30:00 +08:00
var TypeError$g = global_1.TypeError;
var getFlags$1 = functionUncurryThis(regexpFlags);
var stringIndexOf$2 = functionUncurryThis(''.indexOf);
var un$MatchAll = functionUncurryThis(''.matchAll);
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var WORKS_WITH_NON_GLOBAL_REGEX = !!un$MatchAll && !fails(function () {
un$MatchAll('a', /./);
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var $RegExpStringIterator = createIteratorConstructor(function RegExpStringIterator(regexp, string, $global, fullUnicode) {
setInternalState$b(this, {
type: REGEXP_STRING_ITERATOR,
regexp: regexp,
string: string,
2021-10-29 14:30:00 +08:00
global: $global,
unicode: fullUnicode,
done: false
});
}, REGEXP_STRING, function next() {
2021-10-29 14:30:00 +08:00
var state = getInternalState$8(this);
if (state.done) { return { value: undefined, done: true }; }
var R = state.regexp;
var S = state.string;
2021-10-29 14:30:00 +08:00
var match = regexpExecAbstract(R, S);
if (match === null) { return { value: undefined, done: state.done = true }; }
if (state.global) {
2021-10-29 14:30:00 +08:00
if (toString_1(match[0]) === '') { R.lastIndex = advanceStringIndex(S, toLength(R.lastIndex), state.unicode); }
return { value: match, done: false };
}
state.done = true;
return { value: match, done: false };
});
2020-01-17 14:55:39 +08:00
var $matchAll = function (string) {
var R = anObject(this);
2021-10-29 14:30:00 +08:00
var S = toString_1(string);
var C, flagsValue, flags, matcher, $global, fullUnicode;
C = speciesConstructor(R, RegExp);
flagsValue = R.flags;
2021-10-29 14:30:00 +08:00
if (flagsValue === undefined && objectIsPrototypeOf(RegExpPrototype$1, R) && !('flags' in RegExpPrototype$1)) {
flagsValue = getFlags$1(R);
}
2021-10-29 14:30:00 +08:00
flags = flagsValue === undefined ? '' : toString_1(flagsValue);
matcher = new C(C === RegExp ? R.source : R, flags);
2021-10-29 14:30:00 +08:00
$global = !!~stringIndexOf$2(flags, 'g');
fullUnicode = !!~stringIndexOf$2(flags, 'u');
matcher.lastIndex = toLength(R.lastIndex);
2021-10-29 14:30:00 +08:00
return new $RegExpStringIterator(matcher, S, $global, fullUnicode);
};
2020-01-17 14:55:39 +08:00
// `String.prototype.matchAll` method
// https://tc39.es/ecma262/#sec-string.prototype.matchall
_export({ target: 'String', proto: true, forced: WORKS_WITH_NON_GLOBAL_REGEX }, {
matchAll: function matchAll(regexp) {
var O = requireObjectCoercible(this);
var flags, S, matcher, rx;
if (regexp != null) {
if (isRegexp(regexp)) {
2021-10-29 14:30:00 +08:00
flags = toString_1(requireObjectCoercible('flags' in RegExpPrototype$1
? regexp.flags
2021-10-29 14:30:00 +08:00
: getFlags$1(regexp)
));
2021-10-29 14:30:00 +08:00
if (!~stringIndexOf$2(flags, 'g')) { throw TypeError$g('`.matchAll` does not allow non-global regexes'); }
}
2021-10-29 14:30:00 +08:00
if (WORKS_WITH_NON_GLOBAL_REGEX) { return un$MatchAll(O, regexp); }
matcher = getMethod(regexp, MATCH_ALL);
if (matcher === undefined && isPure && classofRaw(regexp) == 'RegExp') { matcher = $matchAll; }
2021-10-29 14:30:00 +08:00
if (matcher) { return functionCall(matcher, regexp, O); }
} else if (WORKS_WITH_NON_GLOBAL_REGEX) { return un$MatchAll(O, regexp); }
S = toString_1(O);
rx = new RegExp(regexp, 'g');
return rx[MATCH_ALL](S);
}
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
MATCH_ALL in RegExpPrototype$1 || redefine(RegExpPrototype$1, MATCH_ALL, $matchAll);
2021-03-02 10:28:33 +08:00
// https://github.com/zloirock/core-js/issues/280
2020-01-17 14:55:39 +08:00
var stringPadWebkitBug = /Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(engineUserAgent);
2020-01-17 14:55:39 +08:00
var $padEnd = stringPad.end;
2020-01-17 14:55:39 +08:00
// `String.prototype.padEnd` method
// https://tc39.es/ecma262/#sec-string.prototype.padend
_export({ target: 'String', proto: true, forced: stringPadWebkitBug }, {
padEnd: function padEnd(maxLength /* , fillString = ' ' */) {
return $padEnd(this, maxLength, arguments.length > 1 ? arguments[1] : undefined);
}
});
2020-01-17 14:55:39 +08:00
var $padStart = stringPad.start;
2020-01-17 14:55:39 +08:00
// `String.prototype.padStart` method
// https://tc39.es/ecma262/#sec-string.prototype.padstart
_export({ target: 'String', proto: true, forced: stringPadWebkitBug }, {
padStart: function padStart(maxLength /* , fillString = ' ' */) {
return $padStart(this, maxLength, arguments.length > 1 ? arguments[1] : undefined);
}
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var push$c = functionUncurryThis([].push);
var join$4 = functionUncurryThis([].join);
// `String.raw` method
// https://tc39.es/ecma262/#sec-string.raw
_export({ target: 'String', stat: true }, {
raw: function raw(template) {
var arguments$1 = arguments;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var rawTemplate = toIndexedObject(toObject(template).raw);
var literalSegments = lengthOfArrayLike(rawTemplate);
var argumentsLength = arguments.length;
var elements = [];
var i = 0;
while (literalSegments > i) {
2021-10-29 14:30:00 +08:00
push$c(elements, toString_1(rawTemplate[i++]));
if (i === literalSegments) { return join$4(elements, ''); }
if (i < argumentsLength) { push$c(elements, toString_1(arguments$1[i])); }
}
}
});
2020-01-17 14:55:39 +08:00
// `String.prototype.repeat` method
// https://tc39.es/ecma262/#sec-string.prototype.repeat
_export({ target: 'String', proto: true }, {
repeat: stringRepeat
});
2020-01-17 14:55:39 +08:00
var floor$3 = Math.floor;
2021-10-29 14:30:00 +08:00
var charAt$6 = functionUncurryThis(''.charAt);
var replace$4 = functionUncurryThis(''.replace);
var stringSlice$9 = functionUncurryThis(''.slice);
var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d{1,2}|<[^>]*>)/g;
var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d{1,2})/g;
2020-01-17 14:55:39 +08:00
// `GetSubstitution` abstract operation
// https://tc39.es/ecma262/#sec-getsubstitution
var getSubstitution = function (matched, str, position, captures, namedCaptures, replacement) {
var tailPos = position + matched.length;
var m = captures.length;
var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;
if (namedCaptures !== undefined) {
namedCaptures = toObject(namedCaptures);
symbols = SUBSTITUTION_SYMBOLS;
}
2021-10-29 14:30:00 +08:00
return replace$4(replacement, symbols, function (match, ch) {
var capture;
2021-10-29 14:30:00 +08:00
switch (charAt$6(ch, 0)) {
case '$': return '$';
case '&': return matched;
2021-10-29 14:30:00 +08:00
case '`': return stringSlice$9(str, 0, position);
case "'": return stringSlice$9(str, tailPos);
case '<':
2021-10-29 14:30:00 +08:00
capture = namedCaptures[stringSlice$9(ch, 1, -1)];
break;
default: // \d\d?
var n = +ch;
if (n === 0) { return match; }
if (n > m) {
var f = floor$3(n / 10);
if (f === 0) { return match; }
2021-10-29 14:30:00 +08:00
if (f <= m) { return captures[f - 1] === undefined ? charAt$6(ch, 1) : captures[f - 1] + charAt$6(ch, 1); }
return match;
}
capture = captures[n - 1];
}
return capture === undefined ? '' : capture;
});
2021-09-01 10:47:40 +08:00
};
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var REPLACE$1 = wellKnownSymbol('replace');
var max$3 = Math.max;
var min$4 = Math.min;
var concat$1 = functionUncurryThis([].concat);
var push$b = functionUncurryThis([].push);
var stringIndexOf$1 = functionUncurryThis(''.indexOf);
var stringSlice$8 = functionUncurryThis(''.slice);
var maybeToString = function (it) {
return it === undefined ? it : String(it);
};
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
// IE <= 11 replaces $0 with the whole match, as if it was $&
// https://stackoverflow.com/questions/6024666/getting-ie-to-replace-a-regex-with-the-literal-string-0
var REPLACE_KEEPS_$0 = (function () {
// eslint-disable-next-line regexp/prefer-escape-replacement-dollar-char -- required for testing
return 'a'.replace(/./, '$0') === '$0';
})();
// Safari <= 13.0.3(?) substitutes nth capture where n>m with an empty string
var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = (function () {
if (/./[REPLACE$1]) {
return /./[REPLACE$1]('a', '$0') === '';
}
return false;
})();
var REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () {
var re = /./;
re.exec = function () {
var result = [];
result.groups = { a: '7' };
return result;
};
// eslint-disable-next-line regexp/no-useless-dollar-replacements -- false positive
return ''.replace(re, '$<a>') !== '7';
});
// @@replace logic
2021-10-29 14:30:00 +08:00
fixRegexpWellKnownSymbolLogic('replace', function (_, nativeReplace, maybeCallNative) {
var UNSAFE_SUBSTITUTE = REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE ? '$' : '$0';
2020-01-17 14:55:39 +08:00
return [
// `String.prototype.replace` method
// https://tc39.es/ecma262/#sec-string.prototype.replace
function replace(searchValue, replaceValue) {
var O = requireObjectCoercible(this);
2021-10-29 14:30:00 +08:00
var replacer = searchValue == undefined ? undefined : getMethod(searchValue, REPLACE$1);
return replacer
? functionCall(replacer, searchValue, O, replaceValue)
: functionCall(nativeReplace, toString_1(O), searchValue, replaceValue);
},
// `RegExp.prototype[@@replace]` method
// https://tc39.es/ecma262/#sec-regexp.prototype-@@replace
2021-10-29 14:30:00 +08:00
function (string, replaceValue) {
var rx = anObject(this);
var S = toString_1(string);
if (
2021-10-29 14:30:00 +08:00
typeof replaceValue == 'string' &&
stringIndexOf$1(replaceValue, UNSAFE_SUBSTITUTE) === -1 &&
stringIndexOf$1(replaceValue, '$<') === -1
) {
2021-10-29 14:30:00 +08:00
var res = maybeCallNative(nativeReplace, rx, S, replaceValue);
if (res.done) { return res.value; }
}
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var functionalReplace = isCallable(replaceValue);
if (!functionalReplace) { replaceValue = toString_1(replaceValue); }
2020-01-17 14:55:39 +08:00
var global = rx.global;
if (global) {
var fullUnicode = rx.unicode;
rx.lastIndex = 0;
}
var results = [];
while (true) {
var result = regexpExecAbstract(rx, S);
if (result === null) { break; }
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
push$b(results, result);
if (!global) { break; }
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var matchStr = toString_1(result[0]);
if (matchStr === '') { rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode); }
}
2020-01-17 14:55:39 +08:00
var accumulatedResult = '';
var nextSourcePosition = 0;
for (var i = 0; i < results.length; i++) {
result = results[i];
2021-10-29 14:30:00 +08:00
var matched = toString_1(result[0]);
var position = max$3(min$4(toIntegerOrInfinity(result.index), S.length), 0);
var captures = [];
// NOTE: This is equivalent to
// captures = result.slice(1).map(maybeToString)
// but for some reason `nativeSlice.call(result, 1, result.length)` (called in
// the slice polyfill when slicing native arrays) "doesn't work" in safari 9 and
// causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.
2021-10-29 14:30:00 +08:00
for (var j = 1; j < result.length; j++) { push$b(captures, maybeToString(result[j])); }
var namedCaptures = result.groups;
if (functionalReplace) {
2021-10-29 14:30:00 +08:00
var replacerArgs = concat$1([matched], captures, position, S);
if (namedCaptures !== undefined) { push$b(replacerArgs, namedCaptures); }
var replacement = toString_1(functionApply(replaceValue, undefined, replacerArgs));
} else {
replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);
}
if (position >= nextSourcePosition) {
2021-10-29 14:30:00 +08:00
accumulatedResult += stringSlice$8(S, nextSourcePosition, position) + replacement;
nextSourcePosition = position + matched.length;
}
}
2021-10-29 14:30:00 +08:00
return accumulatedResult + stringSlice$8(S, nextSourcePosition);
}
];
2021-10-29 14:30:00 +08:00
}, !REPLACE_SUPPORTS_NAMED_GROUPS || !REPLACE_KEEPS_$0 || REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE);
2020-01-17 14:55:39 +08:00
var REPLACE = wellKnownSymbol('replace');
var RegExpPrototype = RegExp.prototype;
2021-10-29 14:30:00 +08:00
var TypeError$f = global_1.TypeError;
var getFlags = functionUncurryThis(regexpFlags);
var indexOf = functionUncurryThis(''.indexOf);
functionUncurryThis(''.replace);
var stringSlice$7 = functionUncurryThis(''.slice);
var max$2 = Math.max;
2020-01-17 14:55:39 +08:00
var stringIndexOf = function (string, searchValue, fromIndex) {
if (fromIndex > string.length) { return -1; }
if (searchValue === '') { return fromIndex; }
2021-10-29 14:30:00 +08:00
return indexOf(string, searchValue, fromIndex);
};
2020-01-17 14:55:39 +08:00
// `String.prototype.replaceAll` method
// https://tc39.es/ecma262/#sec-string.prototype.replaceall
_export({ target: 'String', proto: true }, {
replaceAll: function replaceAll(searchValue, replaceValue) {
var O = requireObjectCoercible(this);
var IS_REG_EXP, flags, replacer, string, searchString, functionalReplace, searchLength, advanceBy, replacement;
var position = 0;
var endOfLastMatch = 0;
var result = '';
if (searchValue != null) {
IS_REG_EXP = isRegexp(searchValue);
if (IS_REG_EXP) {
2021-10-29 14:30:00 +08:00
flags = toString_1(requireObjectCoercible('flags' in RegExpPrototype
? searchValue.flags
2021-10-29 14:30:00 +08:00
: getFlags(searchValue)
));
2021-10-29 14:30:00 +08:00
if (!~indexOf(flags, 'g')) { throw TypeError$f('`.replaceAll` does not allow non-global regexes'); }
}
2021-10-29 14:30:00 +08:00
replacer = getMethod(searchValue, REPLACE);
if (replacer) {
return functionCall(replacer, searchValue, O, replaceValue);
}
}
2021-10-29 14:30:00 +08:00
string = toString_1(O);
searchString = toString_1(searchValue);
functionalReplace = isCallable(replaceValue);
if (!functionalReplace) { replaceValue = toString_1(replaceValue); }
searchLength = searchString.length;
2021-10-29 14:30:00 +08:00
advanceBy = max$2(1, searchLength);
position = stringIndexOf(string, searchString, 0);
while (position !== -1) {
2021-10-29 14:30:00 +08:00
replacement = functionalReplace
? toString_1(replaceValue(searchString, position, string))
: getSubstitution(searchString, string, position, [], undefined, replaceValue);
result += stringSlice$7(string, endOfLastMatch, position) + replacement;
endOfLastMatch = position + searchLength;
position = stringIndexOf(string, searchString, position + advanceBy);
}
if (endOfLastMatch < string.length) {
2021-10-29 14:30:00 +08:00
result += stringSlice$7(string, endOfLastMatch);
}
return result;
}
});
2020-01-17 14:55:39 +08:00
// @@search logic
2021-10-29 14:30:00 +08:00
fixRegexpWellKnownSymbolLogic('search', function (SEARCH, nativeSearch, maybeCallNative) {
return [
// `String.prototype.search` method
// https://tc39.es/ecma262/#sec-string.prototype.search
function search(regexp) {
var O = requireObjectCoercible(this);
2021-10-29 14:30:00 +08:00
var searcher = regexp == undefined ? undefined : getMethod(regexp, SEARCH);
return searcher ? functionCall(searcher, regexp, O) : new RegExp(regexp)[SEARCH](toString_1(O));
},
// `RegExp.prototype[@@search]` method
// https://tc39.es/ecma262/#sec-regexp.prototype-@@search
2021-10-29 14:30:00 +08:00
function (string) {
var rx = anObject(this);
var S = toString_1(string);
var res = maybeCallNative(nativeSearch, rx, S);
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
if (res.done) { return res.value; }
2020-01-17 14:55:39 +08:00
var previousLastIndex = rx.lastIndex;
if (!sameValue(previousLastIndex, 0)) { rx.lastIndex = 0; }
var result = regexpExecAbstract(rx, S);
if (!sameValue(rx.lastIndex, previousLastIndex)) { rx.lastIndex = previousLastIndex; }
return result === null ? -1 : result.index;
}
];
});
2020-01-17 14:55:39 +08:00
var UNSUPPORTED_Y = regexpStickyHelpers.UNSUPPORTED_Y;
var MAX_UINT32 = 0xFFFFFFFF;
2021-10-29 14:30:00 +08:00
var min$3 = Math.min;
var $push = [].push;
var exec$4 = functionUncurryThis(/./.exec);
var push$a = functionUncurryThis($push);
var stringSlice$6 = functionUncurryThis(''.slice);
// Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec
// Weex JS has frozen built-in prototypes, so use try / catch wrapper
var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails(function () {
// eslint-disable-next-line regexp/no-empty-group -- required for testing
var re = /(?:)/;
var originalExec = re.exec;
re.exec = function () { return originalExec.apply(this, arguments); };
var result = 'ab'.split(re);
return result.length !== 2 || result[0] !== 'a' || result[1] !== 'b';
});
2020-01-17 14:55:39 +08:00
// @@split logic
2021-10-29 14:30:00 +08:00
fixRegexpWellKnownSymbolLogic('split', function (SPLIT, nativeSplit, maybeCallNative) {
var internalSplit;
if (
'abbc'.split(/(b)*/)[1] == 'c' ||
// eslint-disable-next-line regexp/no-empty-group -- required for testing
'test'.split(/(?:)/, -1).length != 4 ||
'ab'.split(/(?:ab)*/).length != 2 ||
'.'.split(/(.?)(.?)/).length != 4 ||
2021-10-29 14:30:00 +08:00
// eslint-disable-next-line regexp/no-empty-capturing-group, regexp/no-empty-group -- required for testing
'.'.split(/()()/).length > 1 ||
''.split(/.?/).length
) {
// based on es5-shim implementation, need to rework it
internalSplit = function (separator, limit) {
2021-10-29 14:30:00 +08:00
var string = toString_1(requireObjectCoercible(this));
var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
if (lim === 0) { return []; }
if (separator === undefined) { return [string]; }
// If `separator` is not a regex, use native split
if (!isRegexp(separator)) {
2021-10-29 14:30:00 +08:00
return functionCall(nativeSplit, string, separator, lim);
}
var output = [];
var flags = (separator.ignoreCase ? 'i' : '') +
(separator.multiline ? 'm' : '') +
(separator.unicode ? 'u' : '') +
(separator.sticky ? 'y' : '');
var lastLastIndex = 0;
// Make `global` and avoid `lastIndex` issues by working with a copy
var separatorCopy = new RegExp(separator.source, flags + 'g');
var match, lastIndex, lastLength;
2021-10-29 14:30:00 +08:00
while (match = functionCall(regexpExec, separatorCopy, string)) {
lastIndex = separatorCopy.lastIndex;
if (lastIndex > lastLastIndex) {
2021-10-29 14:30:00 +08:00
push$a(output, stringSlice$6(string, lastLastIndex, match.index));
if (match.length > 1 && match.index < string.length) { functionApply($push, output, arraySlice$1(match, 1)); }
lastLength = match[0].length;
lastLastIndex = lastIndex;
if (output.length >= lim) { break; }
}
if (separatorCopy.lastIndex === match.index) { separatorCopy.lastIndex++; } // Avoid an infinite loop
}
if (lastLastIndex === string.length) {
2021-10-29 14:30:00 +08:00
if (lastLength || !exec$4(separatorCopy, '')) { push$a(output, ''); }
} else { push$a(output, stringSlice$6(string, lastLastIndex)); }
return output.length > lim ? arraySlice$1(output, 0, lim) : output;
};
// Chakra, V8
} else if ('0'.split(undefined, 0).length) {
internalSplit = function (separator, limit) {
2021-10-29 14:30:00 +08:00
return separator === undefined && limit === 0 ? [] : functionCall(nativeSplit, this, separator, limit);
};
} else { internalSplit = nativeSplit; }
2020-01-17 14:55:39 +08:00
return [
// `String.prototype.split` method
// https://tc39.es/ecma262/#sec-string.prototype.split
function split(separator, limit) {
var O = requireObjectCoercible(this);
2021-10-29 14:30:00 +08:00
var splitter = separator == undefined ? undefined : getMethod(separator, SPLIT);
return splitter
? functionCall(splitter, separator, O, limit)
: functionCall(internalSplit, toString_1(O), separator, limit);
},
// `RegExp.prototype[@@split]` method
// https://tc39.es/ecma262/#sec-regexp.prototype-@@split
//
// NOTE: This cannot be properly polyfilled in engines that don't support
// the 'y' flag.
2021-10-29 14:30:00 +08:00
function (string, limit) {
var rx = anObject(this);
var S = toString_1(string);
var res = maybeCallNative(internalSplit, rx, S, limit, internalSplit !== nativeSplit);
if (res.done) { return res.value; }
2020-01-17 14:55:39 +08:00
var C = speciesConstructor(rx, RegExp);
2020-01-17 14:55:39 +08:00
var unicodeMatching = rx.unicode;
var flags = (rx.ignoreCase ? 'i' : '') +
(rx.multiline ? 'm' : '') +
(rx.unicode ? 'u' : '') +
(UNSUPPORTED_Y ? 'g' : 'y');
2021-05-12 15:34:21 +08:00
// ^(? + rx + ) is needed, in combination with some S slicing, to
// simulate the 'y' flag.
var splitter = new C(UNSUPPORTED_Y ? '^(?:' + rx.source + ')' : rx, flags);
var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
if (lim === 0) { return []; }
if (S.length === 0) { return regexpExecAbstract(splitter, S) === null ? [S] : []; }
var p = 0;
var q = 0;
var A = [];
while (q < S.length) {
splitter.lastIndex = UNSUPPORTED_Y ? 0 : q;
2021-10-29 14:30:00 +08:00
var z = regexpExecAbstract(splitter, UNSUPPORTED_Y ? stringSlice$6(S, q) : S);
var e;
if (
z === null ||
2021-10-29 14:30:00 +08:00
(e = min$3(toLength(splitter.lastIndex + (UNSUPPORTED_Y ? q : 0)), S.length)) === p
) {
q = advanceStringIndex(S, q, unicodeMatching);
} else {
2021-10-29 14:30:00 +08:00
push$a(A, stringSlice$6(S, p, q));
if (A.length === lim) { return A; }
for (var i = 1; i <= z.length - 1; i++) {
2021-10-29 14:30:00 +08:00
push$a(A, z[i]);
if (A.length === lim) { return A; }
}
q = p = e;
}
}
2021-10-29 14:30:00 +08:00
push$a(A, stringSlice$6(S, p));
return A;
}
];
2021-10-29 14:30:00 +08:00
}, !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC, UNSUPPORTED_Y);
2020-01-17 14:55:39 +08:00
var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
2020-01-17 14:55:39 +08:00
2021-09-01 10:47:40 +08:00
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
// eslint-disable-next-line es/no-string-prototype-startswith -- safe
2021-10-29 14:30:00 +08:00
var un$StartsWith = functionUncurryThis(''.startsWith);
var stringSlice$5 = functionUncurryThis(''.slice);
var min$2 = Math.min;
2020-01-17 14:55:39 +08:00
var CORRECT_IS_REGEXP_LOGIC = correctIsRegexpLogic('startsWith');
// https://github.com/zloirock/core-js/pull/702
var MDN_POLYFILL_BUG = !CORRECT_IS_REGEXP_LOGIC && !!function () {
var descriptor = getOwnPropertyDescriptor(String.prototype, 'startsWith');
return descriptor && !descriptor.writable;
}();
// `String.prototype.startsWith` method
// https://tc39.es/ecma262/#sec-string.prototype.startswith
_export({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG && !CORRECT_IS_REGEXP_LOGIC }, {
startsWith: function startsWith(searchString /* , position = 0 */) {
2021-10-29 14:30:00 +08:00
var that = toString_1(requireObjectCoercible(this));
notARegexp(searchString);
2021-10-29 14:30:00 +08:00
var index = toLength(min$2(arguments.length > 1 ? arguments[1] : undefined, that.length));
var search = toString_1(searchString);
return un$StartsWith
? un$StartsWith(that, search, index)
: stringSlice$5(that, index, index + search.length) === search;
}
});
var stringSlice$4 = functionUncurryThis(''.slice);
var max$1 = Math.max;
var min$1 = Math.min;
// eslint-disable-next-line unicorn/prefer-string-slice -- required for testing
var FORCED$8 = !''.substr || 'ab'.substr(-1) !== 'b';
// `String.prototype.substr` method
// https://tc39.es/ecma262/#sec-string.prototype.substr
_export({ target: 'String', proto: true, forced: FORCED$8 }, {
substr: function substr(start, length) {
var that = toString_1(requireObjectCoercible(this));
var size = that.length;
var intStart = toIntegerOrInfinity(start);
var intLength, intEnd;
if (intStart === Infinity) { intStart = 0; }
if (intStart < 0) { intStart = max$1(size + intStart, 0); }
intLength = length === undefined ? size : toIntegerOrInfinity(length);
if (intLength <= 0 || intLength === Infinity) { return ''; }
intEnd = min$1(intStart + intLength, size);
return intStart >= intEnd ? '' : stringSlice$4(that, intStart, intEnd);
}
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var PROPER_FUNCTION_NAME$1 = functionName.PROPER;
var non = '\u200B\u0085\u180E';
2020-01-17 14:55:39 +08:00
// check that a method works with the correct list
// of whitespaces and has a correct name
var stringTrimForced = function (METHOD_NAME) {
return fails(function () {
2021-10-29 14:30:00 +08:00
return !!whitespaces[METHOD_NAME]()
|| non[METHOD_NAME]() !== non
|| (PROPER_FUNCTION_NAME$1 && whitespaces[METHOD_NAME].name !== METHOD_NAME);
});
};
var $trim = stringTrim.trim;
// `String.prototype.trim` method
// https://tc39.es/ecma262/#sec-string.prototype.trim
_export({ target: 'String', proto: true, forced: stringTrimForced('trim') }, {
trim: function trim() {
return $trim(this);
}
2021-05-12 15:34:21 +08:00
});
2020-01-17 14:55:39 +08:00
var $trimEnd = stringTrim.end;
var FORCED$7 = stringTrimForced('trimEnd');
var trimEnd = FORCED$7 ? function trimEnd() {
return $trimEnd(this);
// eslint-disable-next-line es/no-string-prototype-trimstart-trimend -- safe
} : ''.trimEnd;
// `String.prototype.{ trimEnd, trimRight }` methods
// https://tc39.es/ecma262/#sec-string.prototype.trimend
// https://tc39.es/ecma262/#String.prototype.trimright
2021-10-29 14:30:00 +08:00
_export({ target: 'String', proto: true, name: 'trimEnd', forced: FORCED$7 }, {
trimEnd: trimEnd,
trimRight: trimEnd
});
var $trimStart = stringTrim.start;
var FORCED$6 = stringTrimForced('trimStart');
var trimStart = FORCED$6 ? function trimStart() {
return $trimStart(this);
// eslint-disable-next-line es/no-string-prototype-trimstart-trimend -- safe
} : ''.trimStart;
// `String.prototype.{ trimStart, trimLeft }` methods
// https://tc39.es/ecma262/#sec-string.prototype.trimstart
// https://tc39.es/ecma262/#String.prototype.trimleft
2021-10-29 14:30:00 +08:00
_export({ target: 'String', proto: true, name: 'trimStart', forced: FORCED$6 }, {
trimStart: trimStart,
trimLeft: trimStart
});
var quot = /"/g;
2021-10-29 14:30:00 +08:00
var replace$3 = functionUncurryThis(''.replace);
// `CreateHTML` abstract operation
// https://tc39.es/ecma262/#sec-createhtml
var createHtml = function (string, tag, attribute, value) {
2021-10-29 14:30:00 +08:00
var S = toString_1(requireObjectCoercible(string));
var p1 = '<' + tag;
2021-10-29 14:30:00 +08:00
if (attribute !== '') { p1 += ' ' + attribute + '="' + replace$3(toString_1(value), quot, '&quot;') + '"'; }
return p1 + '>' + S + '</' + tag + '>';
};
// check the existence of a method, lowercase
// of a tag and escaping quotes in arguments
var stringHtmlForced = function (METHOD_NAME) {
return fails(function () {
var test = ''[METHOD_NAME]('"');
return test !== test.toLowerCase() || test.split('"').length > 3;
});
};
// `String.prototype.anchor` method
// https://tc39.es/ecma262/#sec-string.prototype.anchor
_export({ target: 'String', proto: true, forced: stringHtmlForced('anchor') }, {
anchor: function anchor(name) {
return createHtml(this, 'a', 'name', name);
}
});
2021-09-01 10:47:40 +08:00
// `String.prototype.big` method
// https://tc39.es/ecma262/#sec-string.prototype.big
_export({ target: 'String', proto: true, forced: stringHtmlForced('big') }, {
big: function big() {
return createHtml(this, 'big', '', '');
}
});
// `String.prototype.blink` method
// https://tc39.es/ecma262/#sec-string.prototype.blink
_export({ target: 'String', proto: true, forced: stringHtmlForced('blink') }, {
blink: function blink() {
return createHtml(this, 'blink', '', '');
}
});
// `String.prototype.bold` method
// https://tc39.es/ecma262/#sec-string.prototype.bold
_export({ target: 'String', proto: true, forced: stringHtmlForced('bold') }, {
bold: function bold() {
return createHtml(this, 'b', '', '');
}
});
// `String.prototype.fixed` method
// https://tc39.es/ecma262/#sec-string.prototype.fixed
_export({ target: 'String', proto: true, forced: stringHtmlForced('fixed') }, {
fixed: function fixed() {
return createHtml(this, 'tt', '', '');
}
});
// `String.prototype.fontcolor` method
// https://tc39.es/ecma262/#sec-string.prototype.fontcolor
_export({ target: 'String', proto: true, forced: stringHtmlForced('fontcolor') }, {
fontcolor: function fontcolor(color) {
return createHtml(this, 'font', 'color', color);
}
});
// `String.prototype.fontsize` method
// https://tc39.es/ecma262/#sec-string.prototype.fontsize
_export({ target: 'String', proto: true, forced: stringHtmlForced('fontsize') }, {
fontsize: function fontsize(size) {
return createHtml(this, 'font', 'size', size);
}
});
// `String.prototype.italics` method
// https://tc39.es/ecma262/#sec-string.prototype.italics
_export({ target: 'String', proto: true, forced: stringHtmlForced('italics') }, {
italics: function italics() {
return createHtml(this, 'i', '', '');
}
});
// `String.prototype.link` method
// https://tc39.es/ecma262/#sec-string.prototype.link
_export({ target: 'String', proto: true, forced: stringHtmlForced('link') }, {
link: function link(url) {
return createHtml(this, 'a', 'href', url);
}
});
// `String.prototype.small` method
// https://tc39.es/ecma262/#sec-string.prototype.small
_export({ target: 'String', proto: true, forced: stringHtmlForced('small') }, {
small: function small() {
return createHtml(this, 'small', '', '');
}
});
// `String.prototype.strike` method
// https://tc39.es/ecma262/#sec-string.prototype.strike
_export({ target: 'String', proto: true, forced: stringHtmlForced('strike') }, {
strike: function strike() {
return createHtml(this, 'strike', '', '');
}
});
// `String.prototype.sub` method
// https://tc39.es/ecma262/#sec-string.prototype.sub
_export({ target: 'String', proto: true, forced: stringHtmlForced('sub') }, {
sub: function sub() {
return createHtml(this, 'sub', '', '');
}
});
// `String.prototype.sup` method
// https://tc39.es/ecma262/#sec-string.prototype.sup
_export({ target: 'String', proto: true, forced: stringHtmlForced('sup') }, {
sup: function sup() {
return createHtml(this, 'sup', '', '');
}
2021-09-01 10:47:40 +08:00
});
2020-01-17 14:55:39 +08:00
/* eslint-disable no-new -- required for testing */
2020-01-17 14:55:39 +08:00
2021-09-01 10:47:40 +08:00
2021-09-22 10:28:02 +08:00
var NATIVE_ARRAY_BUFFER_VIEWS = arrayBufferViewCore.NATIVE_ARRAY_BUFFER_VIEWS;
2020-01-17 14:55:39 +08:00
var ArrayBuffer$1 = global_1.ArrayBuffer;
var Int8Array$2 = global_1.Int8Array;
2021-05-12 15:34:21 +08:00
var typedArrayConstructorsRequireWrappers = !NATIVE_ARRAY_BUFFER_VIEWS || !fails(function () {
Int8Array$2(1);
}) || !fails(function () {
new Int8Array$2(-1);
}) || !checkCorrectnessOfIteration(function (iterable) {
new Int8Array$2();
new Int8Array$2(null);
new Int8Array$2(1.5);
new Int8Array$2(iterable);
}, true) || fails(function () {
// Safari (11+) bug - a reason why even Safari 13 should load a typed array polyfill
return new Int8Array$2(new ArrayBuffer$1(2), 1, undefined).length !== 1;
2020-01-17 14:55:39 +08:00
});
2021-10-29 14:30:00 +08:00
var RangeError$5 = global_1.RangeError;
var toPositiveInteger = function (it) {
2021-10-29 14:30:00 +08:00
var result = toIntegerOrInfinity(it);
if (result < 0) { throw RangeError$5("The argument can't be less than 0"); }
return result;
};
2021-05-12 15:34:21 +08:00
2021-10-29 14:30:00 +08:00
var RangeError$4 = global_1.RangeError;
var toOffset = function (it, BYTES) {
var offset = toPositiveInteger(it);
2021-10-29 14:30:00 +08:00
if (offset % BYTES) { throw RangeError$4('Wrong offset'); }
return offset;
};
2021-05-12 15:34:21 +08:00
2021-10-29 14:30:00 +08:00
var aTypedArrayConstructor$3 = arrayBufferViewCore.aTypedArrayConstructor;
2020-01-17 14:55:39 +08:00
var typedArrayFrom = function from(source /* , mapfn, thisArg */) {
2021-10-29 14:30:00 +08:00
var C = aConstructor(this);
var O = toObject(source);
var argumentsLength = arguments.length;
var mapfn = argumentsLength > 1 ? arguments[1] : undefined;
var mapping = mapfn !== undefined;
var iteratorMethod = getIteratorMethod(O);
var i, length, result, step, iterator, next;
2021-10-29 14:30:00 +08:00
if (iteratorMethod && !isArrayIteratorMethod(iteratorMethod)) {
iterator = getIterator(O, iteratorMethod);
next = iterator.next;
O = [];
2021-10-29 14:30:00 +08:00
while (!(step = functionCall(next, iterator)).done) {
O.push(step.value);
}
}
if (mapping && argumentsLength > 2) {
2021-10-29 14:30:00 +08:00
mapfn = functionBindContext(mapfn, arguments[2]);
}
2021-10-29 14:30:00 +08:00
length = lengthOfArrayLike(O);
result = new (aTypedArrayConstructor$3(C))(length);
for (i = 0; length > i; i++) {
result[i] = mapping ? mapfn(O[i], i) : O[i];
}
return result;
};
2020-01-17 14:55:39 +08:00
var typedArrayConstructor = createCommonjsModule(function (module) {
2021-05-12 15:34:21 +08:00
2020-01-17 14:55:39 +08:00
2021-09-22 10:28:02 +08:00
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
2020-01-17 14:55:39 +08:00
var getOwnPropertyNames = objectGetOwnPropertyNames.f;
2020-01-17 14:55:39 +08:00
var forEach = arrayIteration.forEach;
2020-01-17 14:55:39 +08:00
var getInternalState = internalState.get;
var setInternalState = internalState.set;
var nativeDefineProperty = objectDefineProperty.f;
var nativeGetOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
var round = Math.round;
var RangeError = global_1.RangeError;
var ArrayBuffer = arrayBuffer.ArrayBuffer;
2021-10-29 14:30:00 +08:00
var ArrayBufferPrototype = ArrayBuffer.prototype;
var DataView = arrayBuffer.DataView;
var NATIVE_ARRAY_BUFFER_VIEWS = arrayBufferViewCore.NATIVE_ARRAY_BUFFER_VIEWS;
2021-10-29 14:30:00 +08:00
var TYPED_ARRAY_CONSTRUCTOR = arrayBufferViewCore.TYPED_ARRAY_CONSTRUCTOR;
var TYPED_ARRAY_TAG = arrayBufferViewCore.TYPED_ARRAY_TAG;
var TypedArray = arrayBufferViewCore.TypedArray;
var TypedArrayPrototype = arrayBufferViewCore.TypedArrayPrototype;
2021-09-01 10:47:40 +08:00
var aTypedArrayConstructor = arrayBufferViewCore.aTypedArrayConstructor;
var isTypedArray = arrayBufferViewCore.isTypedArray;
var BYTES_PER_ELEMENT = 'BYTES_PER_ELEMENT';
var WRONG_LENGTH = 'Wrong length';
2021-02-19 17:33:10 +08:00
var fromList = function (C, list) {
2021-10-29 14:30:00 +08:00
aTypedArrayConstructor(C);
2021-09-01 10:47:40 +08:00
var index = 0;
var length = list.length;
2021-10-29 14:30:00 +08:00
var result = new C(length);
2021-09-01 10:47:40 +08:00
while (length > index) { result[index] = list[index++]; }
return result;
};
2020-01-17 14:55:39 +08:00
var addGetter = function (it, key) {
nativeDefineProperty(it, key, { get: function () {
return getInternalState(this)[key];
} });
};
2020-01-17 14:55:39 +08:00
var isArrayBuffer = function (it) {
var klass;
2021-10-29 14:30:00 +08:00
return objectIsPrototypeOf(ArrayBufferPrototype, it) || (klass = classof(it)) == 'ArrayBuffer' || klass == 'SharedArrayBuffer';
};
2021-09-22 10:28:02 +08:00
var isTypedArrayIndex = function (target, key) {
return isTypedArray(target)
2021-10-29 14:30:00 +08:00
&& !isSymbol(key)
&& key in target
2021-10-29 14:30:00 +08:00
&& isIntegralNumber(+key)
&& key >= 0;
};
2021-09-22 10:28:02 +08:00
var wrappedGetOwnPropertyDescriptor = function getOwnPropertyDescriptor(target, key) {
2021-10-29 14:30:00 +08:00
key = toPropertyKey(key);
return isTypedArrayIndex(target, key)
? createPropertyDescriptor(2, target[key])
: nativeGetOwnPropertyDescriptor(target, key);
};
2021-09-22 10:28:02 +08:00
var wrappedDefineProperty = function defineProperty(target, key, descriptor) {
2021-10-29 14:30:00 +08:00
key = toPropertyKey(key);
if (isTypedArrayIndex(target, key)
&& isObject(descriptor)
2021-10-29 14:30:00 +08:00
&& hasOwnProperty_1(descriptor, 'value')
&& !hasOwnProperty_1(descriptor, 'get')
&& !hasOwnProperty_1(descriptor, 'set')
// TODO: add validation descriptor w/o calling accessors
&& !descriptor.configurable
2021-10-29 14:30:00 +08:00
&& (!hasOwnProperty_1(descriptor, 'writable') || descriptor.writable)
&& (!hasOwnProperty_1(descriptor, 'enumerable') || descriptor.enumerable)
) {
target[key] = descriptor.value;
return target;
} return nativeDefineProperty(target, key, descriptor);
};
2021-09-22 10:28:02 +08:00
if (descriptors) {
if (!NATIVE_ARRAY_BUFFER_VIEWS) {
objectGetOwnPropertyDescriptor.f = wrappedGetOwnPropertyDescriptor;
objectDefineProperty.f = wrappedDefineProperty;
addGetter(TypedArrayPrototype, 'buffer');
addGetter(TypedArrayPrototype, 'byteOffset');
addGetter(TypedArrayPrototype, 'byteLength');
addGetter(TypedArrayPrototype, 'length');
2021-09-22 10:28:02 +08:00
}
_export({ target: 'Object', stat: true, forced: !NATIVE_ARRAY_BUFFER_VIEWS }, {
getOwnPropertyDescriptor: wrappedGetOwnPropertyDescriptor,
defineProperty: wrappedDefineProperty
2021-09-22 10:28:02 +08:00
});
module.exports = function (TYPE, wrapper, CLAMPED) {
var BYTES = TYPE.match(/\d+$/)[0] / 8;
var CONSTRUCTOR_NAME = TYPE + (CLAMPED ? 'Clamped' : '') + 'Array';
var GETTER = 'get' + TYPE;
var SETTER = 'set' + TYPE;
var NativeTypedArrayConstructor = global_1[CONSTRUCTOR_NAME];
var TypedArrayConstructor = NativeTypedArrayConstructor;
var TypedArrayConstructorPrototype = TypedArrayConstructor && TypedArrayConstructor.prototype;
var exported = {};
2021-09-22 10:28:02 +08:00
var getter = function (that, index) {
var data = getInternalState(that);
return data.view[GETTER](index * BYTES + data.byteOffset, true);
};
2020-01-17 14:55:39 +08:00
var setter = function (that, index, value) {
var data = getInternalState(that);
if (CLAMPED) { value = (value = round(value)) < 0 ? 0 : value > 0xFF ? 0xFF : value & 0xFF; }
data.view[SETTER](index * BYTES + data.byteOffset, value, true);
};
2021-09-22 10:28:02 +08:00
var addElement = function (that, index) {
nativeDefineProperty(that, index, {
get: function () {
return getter(this, index);
},
set: function (value) {
return setter(this, index, value);
},
enumerable: true
});
};
2021-09-22 10:28:02 +08:00
if (!NATIVE_ARRAY_BUFFER_VIEWS) {
TypedArrayConstructor = wrapper(function (that, data, offset, $length) {
2021-10-29 14:30:00 +08:00
anInstance(that, TypedArrayConstructorPrototype);
var index = 0;
var byteOffset = 0;
var buffer, byteLength, length;
if (!isObject(data)) {
length = toIndex(data);
byteLength = length * BYTES;
buffer = new ArrayBuffer(byteLength);
} else if (isArrayBuffer(data)) {
buffer = data;
byteOffset = toOffset(offset, BYTES);
var $len = data.byteLength;
if ($length === undefined) {
if ($len % BYTES) { throw RangeError(WRONG_LENGTH); }
byteLength = $len - byteOffset;
if (byteLength < 0) { throw RangeError(WRONG_LENGTH); }
} else {
byteLength = toLength($length) * BYTES;
if (byteLength + byteOffset > $len) { throw RangeError(WRONG_LENGTH); }
}
length = byteLength / BYTES;
} else if (isTypedArray(data)) {
return fromList(TypedArrayConstructor, data);
} else {
2021-10-29 14:30:00 +08:00
return functionCall(typedArrayFrom, TypedArrayConstructor, data);
}
setInternalState(that, {
buffer: buffer,
byteOffset: byteOffset,
byteLength: byteLength,
length: length,
view: new DataView(buffer)
});
while (index < length) { addElement(that, index++); }
});
if (objectSetPrototypeOf) { objectSetPrototypeOf(TypedArrayConstructor, TypedArray); }
TypedArrayConstructorPrototype = TypedArrayConstructor.prototype = objectCreate(TypedArrayPrototype);
} else if (typedArrayConstructorsRequireWrappers) {
TypedArrayConstructor = wrapper(function (dummy, data, typedArrayOffset, $length) {
2021-10-29 14:30:00 +08:00
anInstance(dummy, TypedArrayConstructorPrototype);
return inheritIfRequired(function () {
if (!isObject(data)) { return new NativeTypedArrayConstructor(toIndex(data)); }
if (isArrayBuffer(data)) { return $length !== undefined
? new NativeTypedArrayConstructor(data, toOffset(typedArrayOffset, BYTES), $length)
: typedArrayOffset !== undefined
? new NativeTypedArrayConstructor(data, toOffset(typedArrayOffset, BYTES))
: new NativeTypedArrayConstructor(data); }
if (isTypedArray(data)) { return fromList(TypedArrayConstructor, data); }
2021-10-29 14:30:00 +08:00
return functionCall(typedArrayFrom, TypedArrayConstructor, data);
}(), dummy, TypedArrayConstructor);
});
2021-09-22 10:28:02 +08:00
if (objectSetPrototypeOf) { objectSetPrototypeOf(TypedArrayConstructor, TypedArray); }
forEach(getOwnPropertyNames(NativeTypedArrayConstructor), function (key) {
if (!(key in TypedArrayConstructor)) {
createNonEnumerableProperty(TypedArrayConstructor, key, NativeTypedArrayConstructor[key]);
}
});
TypedArrayConstructor.prototype = TypedArrayConstructorPrototype;
}
2021-09-22 10:28:02 +08:00
if (TypedArrayConstructorPrototype.constructor !== TypedArrayConstructor) {
createNonEnumerableProperty(TypedArrayConstructorPrototype, 'constructor', TypedArrayConstructor);
}
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
createNonEnumerableProperty(TypedArrayConstructorPrototype, TYPED_ARRAY_CONSTRUCTOR, TypedArrayConstructor);
if (TYPED_ARRAY_TAG) {
createNonEnumerableProperty(TypedArrayConstructorPrototype, TYPED_ARRAY_TAG, CONSTRUCTOR_NAME);
}
2020-01-17 14:55:39 +08:00
exported[CONSTRUCTOR_NAME] = TypedArrayConstructor;
2020-01-17 14:55:39 +08:00
_export({
global: true, forced: TypedArrayConstructor != NativeTypedArrayConstructor, sham: !NATIVE_ARRAY_BUFFER_VIEWS
}, exported);
2020-01-17 14:55:39 +08:00
if (!(BYTES_PER_ELEMENT in TypedArrayConstructor)) {
createNonEnumerableProperty(TypedArrayConstructor, BYTES_PER_ELEMENT, BYTES);
}
2020-01-17 14:55:39 +08:00
if (!(BYTES_PER_ELEMENT in TypedArrayConstructorPrototype)) {
createNonEnumerableProperty(TypedArrayConstructorPrototype, BYTES_PER_ELEMENT, BYTES);
}
setSpecies(CONSTRUCTOR_NAME);
};
} else { module.exports = function () { /* empty */ }; }
2021-09-01 10:47:40 +08:00
});
2020-01-17 14:55:39 +08:00
// `Float32Array` constructor
// https://tc39.es/ecma262/#sec-typedarray-objects
typedArrayConstructor('Float32', function (init) {
return function Float32Array(data, byteOffset, length) {
return init(this, data, byteOffset, length);
};
2021-09-01 10:47:40 +08:00
});
2020-01-17 14:55:39 +08:00
// `Float64Array` constructor
// https://tc39.es/ecma262/#sec-typedarray-objects
typedArrayConstructor('Float64', function (init) {
return function Float64Array(data, byteOffset, length) {
return init(this, data, byteOffset, length);
};
});
2020-01-17 14:55:39 +08:00
// `Int8Array` constructor
// https://tc39.es/ecma262/#sec-typedarray-objects
typedArrayConstructor('Int8', function (init) {
return function Int8Array(data, byteOffset, length) {
return init(this, data, byteOffset, length);
};
});
2020-01-17 14:55:39 +08:00
// `Int16Array` constructor
// https://tc39.es/ecma262/#sec-typedarray-objects
typedArrayConstructor('Int16', function (init) {
return function Int16Array(data, byteOffset, length) {
return init(this, data, byteOffset, length);
};
});
2020-01-17 14:55:39 +08:00
// `Int32Array` constructor
// https://tc39.es/ecma262/#sec-typedarray-objects
typedArrayConstructor('Int32', function (init) {
return function Int32Array(data, byteOffset, length) {
return init(this, data, byteOffset, length);
};
});
2020-01-17 14:55:39 +08:00
// `Uint8Array` constructor
// https://tc39.es/ecma262/#sec-typedarray-objects
typedArrayConstructor('Uint8', function (init) {
return function Uint8Array(data, byteOffset, length) {
return init(this, data, byteOffset, length);
};
});
2020-01-17 14:55:39 +08:00
// `Uint8ClampedArray` constructor
// https://tc39.es/ecma262/#sec-typedarray-objects
typedArrayConstructor('Uint8', function (init) {
return function Uint8ClampedArray(data, byteOffset, length) {
return init(this, data, byteOffset, length);
2021-09-01 10:47:40 +08:00
};
}, true);
2020-01-17 14:55:39 +08:00
// `Uint16Array` constructor
// https://tc39.es/ecma262/#sec-typedarray-objects
typedArrayConstructor('Uint16', function (init) {
return function Uint16Array(data, byteOffset, length) {
return init(this, data, byteOffset, length);
};
});
2020-01-17 14:55:39 +08:00
// `Uint32Array` constructor
// https://tc39.es/ecma262/#sec-typedarray-objects
typedArrayConstructor('Uint32', function (init) {
return function Uint32Array(data, byteOffset, length) {
return init(this, data, byteOffset, length);
};
});
2021-09-01 10:47:40 +08:00
2021-10-29 14:30:00 +08:00
var aTypedArray$s = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$t = arrayBufferViewCore.exportTypedArrayMethod;
// `%TypedArray%.prototype.at` method
// https://github.com/tc39/proposal-relative-indexing-method
exportTypedArrayMethod$t('at', function at(index) {
var O = aTypedArray$s(this);
var len = lengthOfArrayLike(O);
var relativeIndex = toIntegerOrInfinity(index);
var k = relativeIndex >= 0 ? relativeIndex : len + relativeIndex;
return (k < 0 || k >= len) ? undefined : O[k];
});
var u$ArrayCopyWithin = functionUncurryThis(arrayCopyWithin);
var aTypedArray$r = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$s = arrayBufferViewCore.exportTypedArrayMethod;
2020-01-17 14:55:39 +08:00
// `%TypedArray%.prototype.copyWithin` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.copywithin
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$s('copyWithin', function copyWithin(target, start /* , end */) {
return u$ArrayCopyWithin(aTypedArray$r(this), target, start, arguments.length > 2 ? arguments[2] : undefined);
});
2020-01-17 14:55:39 +08:00
var $every$1 = arrayIteration.every;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var aTypedArray$q = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$r = arrayBufferViewCore.exportTypedArrayMethod;
2020-01-17 14:55:39 +08:00
// `%TypedArray%.prototype.every` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.every
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$r('every', function every(callbackfn /* , thisArg */) {
return $every$1(aTypedArray$q(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined);
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var aTypedArray$p = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$q = arrayBufferViewCore.exportTypedArrayMethod;
2020-01-17 14:55:39 +08:00
// `%TypedArray%.prototype.fill` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.fill
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$q('fill', function fill(value /* , start, end */) {
var length = arguments.length;
return functionCall(
arrayFill,
aTypedArray$p(this),
value,
length > 1 ? arguments[1] : undefined,
length > 2 ? arguments[2] : undefined
);
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var arrayFromConstructorAndList = function (Constructor, list) {
var index = 0;
var length = list.length;
2021-10-29 14:30:00 +08:00
var result = new Constructor(length);
while (length > index) { result[index] = list[index++]; }
return result;
};
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var TYPED_ARRAY_CONSTRUCTOR = arrayBufferViewCore.TYPED_ARRAY_CONSTRUCTOR;
var aTypedArrayConstructor$2 = arrayBufferViewCore.aTypedArrayConstructor;
// a part of `TypedArraySpeciesCreate` abstract operation
// https://tc39.es/ecma262/#typedarray-species-create
var typedArraySpeciesConstructor = function (originalArray) {
return aTypedArrayConstructor$2(speciesConstructor(originalArray, originalArray[TYPED_ARRAY_CONSTRUCTOR]));
};
var typedArrayFromSpeciesAndList = function (instance, list) {
return arrayFromConstructorAndList(typedArraySpeciesConstructor(instance), list);
};
var $filter = arrayIteration.filter;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var aTypedArray$o = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$p = arrayBufferViewCore.exportTypedArrayMethod;
2020-01-17 14:55:39 +08:00
// `%TypedArray%.prototype.filter` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.filter
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$p('filter', function filter(callbackfn /* , thisArg */) {
var list = $filter(aTypedArray$o(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined);
return typedArrayFromSpeciesAndList(this, list);
});
2020-01-17 14:55:39 +08:00
var $find$1 = arrayIteration.find;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var aTypedArray$n = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$o = arrayBufferViewCore.exportTypedArrayMethod;
2020-01-17 14:55:39 +08:00
// `%TypedArray%.prototype.find` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.find
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$o('find', function find(predicate /* , thisArg */) {
return $find$1(aTypedArray$n(this), predicate, arguments.length > 1 ? arguments[1] : undefined);
});
2020-01-17 14:55:39 +08:00
var $findIndex = arrayIteration.findIndex;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var aTypedArray$m = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$n = arrayBufferViewCore.exportTypedArrayMethod;
2020-01-17 14:55:39 +08:00
// `%TypedArray%.prototype.findIndex` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.findindex
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$n('findIndex', function findIndex(predicate /* , thisArg */) {
return $findIndex(aTypedArray$m(this), predicate, arguments.length > 1 ? arguments[1] : undefined);
});
2020-01-17 14:55:39 +08:00
var $forEach$1 = arrayIteration.forEach;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var aTypedArray$l = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$m = arrayBufferViewCore.exportTypedArrayMethod;
2020-01-17 14:55:39 +08:00
// `%TypedArray%.prototype.forEach` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.foreach
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$m('forEach', function forEach(callbackfn /* , thisArg */) {
$forEach$1(aTypedArray$l(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined);
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var exportTypedArrayStaticMethod$2 = arrayBufferViewCore.exportTypedArrayStaticMethod;
// `%TypedArray%.from` method
// https://tc39.es/ecma262/#sec-%typedarray%.from
2021-10-29 14:30:00 +08:00
exportTypedArrayStaticMethod$2('from', typedArrayFrom, typedArrayConstructorsRequireWrappers);
var $includes = arrayIncludes.includes;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var aTypedArray$k = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$l = arrayBufferViewCore.exportTypedArrayMethod;
// `%TypedArray%.prototype.includes` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.includes
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$l('includes', function includes(searchElement /* , fromIndex */) {
return $includes(aTypedArray$k(this), searchElement, arguments.length > 1 ? arguments[1] : undefined);
2021-09-22 10:28:02 +08:00
});
2021-09-01 10:47:40 +08:00
var $indexOf = arrayIncludes.indexOf;
2021-09-01 10:47:40 +08:00
2021-10-29 14:30:00 +08:00
var aTypedArray$j = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$k = arrayBufferViewCore.exportTypedArrayMethod;
// `%TypedArray%.prototype.indexOf` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.indexof
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$k('indexOf', function indexOf(searchElement /* , fromIndex */) {
return $indexOf(aTypedArray$j(this), searchElement, arguments.length > 1 ? arguments[1] : undefined);
2021-09-22 10:28:02 +08:00
});
2021-09-01 10:47:40 +08:00
2021-10-29 14:30:00 +08:00
var PROPER_FUNCTION_NAME = functionName.PROPER;
var ITERATOR$3 = wellKnownSymbol('iterator');
var Uint8Array$2 = global_1.Uint8Array;
2021-10-29 14:30:00 +08:00
var arrayValues = functionUncurryThis(es_array_iterator.values);
var arrayKeys = functionUncurryThis(es_array_iterator.keys);
var arrayEntries = functionUncurryThis(es_array_iterator.entries);
var aTypedArray$i = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$j = arrayBufferViewCore.exportTypedArrayMethod;
var nativeTypedArrayIterator = Uint8Array$2 && Uint8Array$2.prototype[ITERATOR$3];
2021-09-01 10:47:40 +08:00
2021-10-29 14:30:00 +08:00
var PROPER_ARRAY_VALUES_NAME = !!nativeTypedArrayIterator && nativeTypedArrayIterator.name === 'values';
2021-09-01 10:47:40 +08:00
var typedArrayValues = function values() {
2021-10-29 14:30:00 +08:00
return arrayValues(aTypedArray$i(this));
};
2021-09-01 10:47:40 +08:00
// `%TypedArray%.prototype.entries` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.entries
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$j('entries', function entries() {
return arrayEntries(aTypedArray$i(this));
});
// `%TypedArray%.prototype.keys` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.keys
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$j('keys', function keys() {
return arrayKeys(aTypedArray$i(this));
2021-05-12 15:34:21 +08:00
});
// `%TypedArray%.prototype.values` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.values
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$j('values', typedArrayValues, PROPER_FUNCTION_NAME && !PROPER_ARRAY_VALUES_NAME);
// `%TypedArray%.prototype[@@iterator]` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype-@@iterator
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$j(ITERATOR$3, typedArrayValues, PROPER_FUNCTION_NAME && !PROPER_ARRAY_VALUES_NAME);
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var aTypedArray$h = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$i = arrayBufferViewCore.exportTypedArrayMethod;
var $join = functionUncurryThis([].join);
2021-09-01 10:47:40 +08:00
// `%TypedArray%.prototype.join` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.join
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$i('join', function join(separator) {
return $join(aTypedArray$h(this), separator);
});
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
var aTypedArray$g = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$h = arrayBufferViewCore.exportTypedArrayMethod;
2021-09-22 10:28:02 +08:00
// `%TypedArray%.prototype.lastIndexOf` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.lastindexof
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$h('lastIndexOf', function lastIndexOf(searchElement /* , fromIndex */) {
var length = arguments.length;
return functionApply(arrayLastIndexOf, aTypedArray$g(this), length > 1 ? [searchElement, arguments[1]] : [searchElement]);
});
2021-09-22 10:28:02 +08:00
var $map = arrayIteration.map;
2021-09-22 10:28:02 +08:00
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var aTypedArray$f = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$g = arrayBufferViewCore.exportTypedArrayMethod;
2020-01-17 14:55:39 +08:00
// `%TypedArray%.prototype.map` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.map
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$g('map', function map(mapfn /* , thisArg */) {
return $map(aTypedArray$f(this), mapfn, arguments.length > 1 ? arguments[1] : undefined, function (O, length) {
return new (typedArraySpeciesConstructor(O))(length);
});
});
2021-09-22 10:28:02 +08:00
var aTypedArrayConstructor$1 = arrayBufferViewCore.aTypedArrayConstructor;
2021-10-29 14:30:00 +08:00
var exportTypedArrayStaticMethod$1 = arrayBufferViewCore.exportTypedArrayStaticMethod;
// `%TypedArray%.of` method
// https://tc39.es/ecma262/#sec-%typedarray%.of
2021-10-29 14:30:00 +08:00
exportTypedArrayStaticMethod$1('of', function of(/* ...items */) {
var arguments$1 = arguments;
var index = 0;
var length = arguments.length;
var result = new (aTypedArrayConstructor$1(this))(length);
while (length > index) { result[index] = arguments$1[index++]; }
return result;
}, typedArrayConstructorsRequireWrappers);
var $reduce = arrayReduce.left;
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
var aTypedArray$e = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$f = arrayBufferViewCore.exportTypedArrayMethod;
// `%TypedArray%.prototype.reduce` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.reduce
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$f('reduce', function reduce(callbackfn /* , initialValue */) {
var length = arguments.length;
return $reduce(aTypedArray$e(this), callbackfn, length, length > 1 ? arguments[1] : undefined);
2021-09-22 10:28:02 +08:00
});
var $reduceRight = arrayReduce.right;
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
var aTypedArray$d = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$e = arrayBufferViewCore.exportTypedArrayMethod;
2021-09-22 10:28:02 +08:00
// `%TypedArray%.prototype.reduceRicht` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.reduceright
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$e('reduceRight', function reduceRight(callbackfn /* , initialValue */) {
var length = arguments.length;
return $reduceRight(aTypedArray$d(this), callbackfn, length, length > 1 ? arguments[1] : undefined);
});
2021-10-29 14:30:00 +08:00
var aTypedArray$c = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$d = arrayBufferViewCore.exportTypedArrayMethod;
var floor$2 = Math.floor;
// `%TypedArray%.prototype.reverse` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.reverse
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$d('reverse', function reverse() {
var that = this;
2021-10-29 14:30:00 +08:00
var length = aTypedArray$c(that).length;
var middle = floor$2(length / 2);
2021-09-22 10:28:02 +08:00
var index = 0;
var value;
while (index < middle) {
value = that[index];
that[index++] = that[--length];
that[length] = value;
} return that;
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var RangeError$3 = global_1.RangeError;
var aTypedArray$b = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$c = arrayBufferViewCore.exportTypedArrayMethod;
var FORCED$5 = fails(function () {
// eslint-disable-next-line es/no-typed-arrays -- required for testing
new Int8Array(1).set({});
2021-05-12 15:34:21 +08:00
});
2020-01-17 14:55:39 +08:00
// `%TypedArray%.prototype.set` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.set
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$c('set', function set(arrayLike /* , offset */) {
aTypedArray$b(this);
var offset = toOffset(arguments.length > 1 ? arguments[1] : undefined, 1);
var length = this.length;
var src = toObject(arrayLike);
2021-10-29 14:30:00 +08:00
var len = lengthOfArrayLike(src);
var index = 0;
2021-10-29 14:30:00 +08:00
if (len + offset > length) { throw RangeError$3('Wrong length'); }
while (index < len) { this[offset + index] = src[index++]; }
}, FORCED$5);
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var aTypedArray$a = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$b = arrayBufferViewCore.exportTypedArrayMethod;
2020-01-17 14:55:39 +08:00
var FORCED$4 = fails(function () {
// eslint-disable-next-line es/no-typed-arrays -- required for testing
new Int8Array(1).slice();
});
2020-01-17 14:55:39 +08:00
// `%TypedArray%.prototype.slice` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.slice
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$b('slice', function slice(start, end) {
var list = arraySlice$1(aTypedArray$a(this), start, end);
var C = typedArraySpeciesConstructor(this);
var index = 0;
var length = list.length;
2021-10-29 14:30:00 +08:00
var result = new C(length);
while (length > index) { result[index] = list[index++]; }
return result;
}, FORCED$4);
2020-01-17 14:55:39 +08:00
var $some$1 = arrayIteration.some;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var aTypedArray$9 = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$a = arrayBufferViewCore.exportTypedArrayMethod;
2020-01-17 14:55:39 +08:00
// `%TypedArray%.prototype.some` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.some
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$a('some', function some(callbackfn /* , thisArg */) {
return $some$1(aTypedArray$9(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined);
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var Array$3 = global_1.Array;
var aTypedArray$8 = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$9 = arrayBufferViewCore.exportTypedArrayMethod;
var Uint16Array = global_1.Uint16Array;
2021-10-29 14:30:00 +08:00
var un$Sort = Uint16Array && functionUncurryThis(Uint16Array.prototype.sort);
// WebKit
2021-10-29 14:30:00 +08:00
var ACCEPT_INCORRECT_ARGUMENTS = !!un$Sort && !(fails(function () {
un$Sort(new Uint16Array(2), null);
}) && fails(function () {
un$Sort(new Uint16Array(2), {});
}));
2021-10-29 14:30:00 +08:00
var STABLE_SORT = !!un$Sort && !fails(function () {
// feature detection can be too slow, so check engines versions
if (engineV8Version) { return engineV8Version < 74; }
if (engineFfVersion) { return engineFfVersion < 67; }
if (engineIsIeOrEdge) { return true; }
if (engineWebkitVersion) { return engineWebkitVersion < 602; }
var array = new Uint16Array(516);
2021-10-29 14:30:00 +08:00
var expected = Array$3(516);
var index, mod;
for (index = 0; index < 516; index++) {
mod = index % 4;
array[index] = 515 - index;
expected[index] = index - 2 * mod + 3;
}
2021-10-29 14:30:00 +08:00
un$Sort(array, function (a, b) {
return (a / 4 | 0) - (b / 4 | 0);
});
for (index = 0; index < 516; index++) {
if (array[index] !== expected[index]) { return true; }
}
});
var getSortCompare = function (comparefn) {
return function (x, y) {
if (comparefn !== undefined) { return +comparefn(x, y) || 0; }
// eslint-disable-next-line no-self-compare -- NaN check
if (y !== y) { return -1; }
// eslint-disable-next-line no-self-compare -- NaN check
if (x !== x) { return 1; }
if (x === 0 && y === 0) { return 1 / x > 0 && 1 / y < 0 ? 1 : -1; }
return x > y;
};
};
2020-01-17 14:55:39 +08:00
// `%TypedArray%.prototype.sort` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.sort
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$9('sort', function sort(comparefn) {
if (comparefn !== undefined) { aCallable(comparefn); }
if (STABLE_SORT) { return un$Sort(this, comparefn); }
2021-10-29 14:30:00 +08:00
return arraySort(aTypedArray$8(this), getSortCompare(comparefn));
}, !STABLE_SORT || ACCEPT_INCORRECT_ARGUMENTS);
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var aTypedArray$7 = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$8 = arrayBufferViewCore.exportTypedArrayMethod;
2020-01-17 14:55:39 +08:00
// `%TypedArray%.prototype.subarray` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.subarray
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$8('subarray', function subarray(begin, end) {
var O = aTypedArray$7(this);
var length = O.length;
var beginIndex = toAbsoluteIndex(begin, length);
2021-10-29 14:30:00 +08:00
var C = typedArraySpeciesConstructor(O);
return new C(
O.buffer,
O.byteOffset + beginIndex * O.BYTES_PER_ELEMENT,
toLength((end === undefined ? length : toAbsoluteIndex(end, length)) - beginIndex)
);
});
2020-01-17 14:55:39 +08:00
var Int8Array$1 = global_1.Int8Array;
2021-10-29 14:30:00 +08:00
var aTypedArray$6 = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$7 = arrayBufferViewCore.exportTypedArrayMethod;
var $toLocaleString = [].toLocaleString;
2020-01-17 14:55:39 +08:00
// iOS Safari 6.x fails here
var TO_LOCALE_STRING_BUG = !!Int8Array$1 && fails(function () {
$toLocaleString.call(new Int8Array$1(1));
});
2020-01-17 14:55:39 +08:00
var FORCED$3 = fails(function () {
return [1, 2].toLocaleString() != new Int8Array$1([1, 2]).toLocaleString();
}) || !fails(function () {
Int8Array$1.prototype.toLocaleString.call([1, 2]);
});
2020-01-17 14:55:39 +08:00
// `%TypedArray%.prototype.toLocaleString` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.tolocalestring
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$7('toLocaleString', function toLocaleString() {
return functionApply(
$toLocaleString,
TO_LOCALE_STRING_BUG ? arraySlice$1(aTypedArray$6(this)) : aTypedArray$6(this),
arraySlice$1(arguments)
);
}, FORCED$3);
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var exportTypedArrayMethod$6 = arrayBufferViewCore.exportTypedArrayMethod;
2020-01-17 14:55:39 +08:00
var Uint8Array$1 = global_1.Uint8Array;
var Uint8ArrayPrototype = Uint8Array$1 && Uint8Array$1.prototype || {};
var arrayToString = [].toString;
2021-10-29 14:30:00 +08:00
var join$3 = functionUncurryThis([].join);
2020-01-17 14:55:39 +08:00
if (fails(function () { arrayToString.call({}); })) {
arrayToString = function toString() {
2021-10-29 14:30:00 +08:00
return join$3(this);
};
2021-09-22 10:28:02 +08:00
}
2020-01-17 14:55:39 +08:00
var IS_NOT_ARRAY_METHOD = Uint8ArrayPrototype.toString != arrayToString;
2020-01-17 14:55:39 +08:00
// `%TypedArray%.prototype.toString` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.tostring
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$6('toString', arrayToString, IS_NOT_ARRAY_METHOD);
var fromCharCode$1 = String.fromCharCode;
var charAt$5 = functionUncurryThis(''.charAt);
var exec$3 = functionUncurryThis(/./.exec);
var stringSlice$3 = functionUncurryThis(''.slice);
var hex2 = /^[\da-f]{2}$/i;
var hex4 = /^[\da-f]{4}$/i;
// `unescape` method
// https://tc39.es/ecma262/#sec-unescape-string
_export({ global: true }, {
unescape: function unescape(string) {
var str = toString_1(string);
var result = '';
var length = str.length;
var index = 0;
var chr, part;
while (index < length) {
chr = charAt$5(str, index++);
if (chr === '%') {
if (charAt$5(str, index) === 'u') {
part = stringSlice$3(str, index + 1, index + 5);
if (exec$3(hex4, part)) {
result += fromCharCode$1(parseInt(part, 16));
index += 5;
continue;
}
} else {
part = stringSlice$3(str, index, index + 2);
if (exec$3(hex2, part)) {
result += fromCharCode$1(parseInt(part, 16));
index += 2;
continue;
}
}
}
result += chr;
} return result;
}
});
2020-01-17 14:55:39 +08:00
var getWeakData = internalMetadata.getWeakData;
2020-01-17 14:55:39 +08:00
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
var setInternalState$a = internalState.set;
var internalStateGetterFor = internalState.getterFor;
var find$1 = arrayIteration.find;
var findIndex = arrayIteration.findIndex;
2021-10-29 14:30:00 +08:00
var splice$1 = functionUncurryThis([].splice);
var id = 0;
2021-09-01 10:47:40 +08:00
// fallback for uncaught frozen keys
var uncaughtFrozenStore = function (store) {
return store.frozen || (store.frozen = new UncaughtFrozenStore());
};
2020-01-17 14:55:39 +08:00
var UncaughtFrozenStore = function () {
this.entries = [];
};
2021-05-12 15:34:21 +08:00
var findUncaughtFrozen = function (store, key) {
return find$1(store.entries, function (it) {
return it[0] === key;
});
};
2021-05-12 15:34:21 +08:00
UncaughtFrozenStore.prototype = {
get: function (key) {
var entry = findUncaughtFrozen(this, key);
if (entry) { return entry[1]; }
},
has: function (key) {
return !!findUncaughtFrozen(this, key);
},
set: function (key, value) {
var entry = findUncaughtFrozen(this, key);
if (entry) { entry[1] = value; }
else { this.entries.push([key, value]); }
},
'delete': function (key) {
var index = findIndex(this.entries, function (it) {
return it[0] === key;
});
2021-10-29 14:30:00 +08:00
if (~index) { splice$1(this.entries, index, 1); }
return !!~index;
}
};
2021-05-12 15:34:21 +08:00
var collectionWeak = {
getConstructor: function (wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER) {
2021-10-29 14:30:00 +08:00
var Constructor = wrapper(function (that, iterable) {
anInstance(that, Prototype);
setInternalState$a(that, {
type: CONSTRUCTOR_NAME,
id: id++,
frozen: undefined
});
if (iterable != undefined) { iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP }); }
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var Prototype = Constructor.prototype;
var getInternalState = internalStateGetterFor(CONSTRUCTOR_NAME);
var define = function (that, key, value) {
var state = getInternalState(that);
var data = getWeakData(anObject(key), true);
if (data === true) { uncaughtFrozenStore(state).set(key, value); }
else { data[state.id] = value; }
return that;
};
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
redefineAll(Prototype, {
// `{ WeakMap, WeakSet }.prototype.delete(key)` methods
// https://tc39.es/ecma262/#sec-weakmap.prototype.delete
// https://tc39.es/ecma262/#sec-weakset.prototype.delete
'delete': function (key) {
var state = getInternalState(this);
if (!isObject(key)) { return false; }
var data = getWeakData(key);
if (data === true) { return uncaughtFrozenStore(state)['delete'](key); }
2021-10-29 14:30:00 +08:00
return data && hasOwnProperty_1(data, state.id) && delete data[state.id];
},
// `{ WeakMap, WeakSet }.prototype.has(key)` methods
// https://tc39.es/ecma262/#sec-weakmap.prototype.has
// https://tc39.es/ecma262/#sec-weakset.prototype.has
has: function has(key) {
var state = getInternalState(this);
if (!isObject(key)) { return false; }
var data = getWeakData(key);
if (data === true) { return uncaughtFrozenStore(state).has(key); }
2021-10-29 14:30:00 +08:00
return data && hasOwnProperty_1(data, state.id);
}
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
redefineAll(Prototype, IS_MAP ? {
// `WeakMap.prototype.get(key)` method
// https://tc39.es/ecma262/#sec-weakmap.prototype.get
get: function get(key) {
var state = getInternalState(this);
if (isObject(key)) {
var data = getWeakData(key);
if (data === true) { return uncaughtFrozenStore(state).get(key); }
return data ? data[state.id] : undefined;
}
},
// `WeakMap.prototype.set(key, value)` method
// https://tc39.es/ecma262/#sec-weakmap.prototype.set
set: function set(key, value) {
return define(this, key, value);
}
} : {
// `WeakSet.prototype.add(value)` method
// https://tc39.es/ecma262/#sec-weakset.prototype.add
add: function add(value) {
return define(this, value, true);
}
});
2021-02-19 17:33:10 +08:00
2021-10-29 14:30:00 +08:00
return Constructor;
}
};
2021-02-19 17:33:10 +08:00
var enforceIternalState = internalState.enforce;
2021-02-19 17:33:10 +08:00
var IS_IE11 = !global_1.ActiveXObject && 'ActiveXObject' in global_1;
// eslint-disable-next-line es/no-object-isextensible -- safe
var isExtensible = Object.isExtensible;
var InternalWeakMap;
2021-02-19 17:33:10 +08:00
var wrapper = function (init) {
return function WeakMap() {
return init(this, arguments.length ? arguments[0] : undefined);
};
};
2021-02-19 17:33:10 +08:00
// `WeakMap` constructor
// https://tc39.es/ecma262/#sec-weakmap-constructor
2021-10-29 14:30:00 +08:00
var $WeakMap = collection('WeakMap', wrapper, collectionWeak);
2021-02-19 17:33:10 +08:00
// IE11 WeakMap frozen keys fix
// We can't use feature detection because it crash some old IE builds
// https://github.com/zloirock/core-js/issues/485
if (nativeWeakMap && IS_IE11) {
InternalWeakMap = collectionWeak.getConstructor(wrapper, 'WeakMap', true);
2021-10-29 14:30:00 +08:00
internalMetadata.enable();
var WeakMapPrototype = $WeakMap.prototype;
2021-10-29 14:30:00 +08:00
var nativeDelete = functionUncurryThis(WeakMapPrototype['delete']);
var nativeHas = functionUncurryThis(WeakMapPrototype.has);
var nativeGet = functionUncurryThis(WeakMapPrototype.get);
var nativeSet = functionUncurryThis(WeakMapPrototype.set);
redefineAll(WeakMapPrototype, {
'delete': function (key) {
if (isObject(key) && !isExtensible(key)) {
var state = enforceIternalState(this);
if (!state.frozen) { state.frozen = new InternalWeakMap(); }
2021-10-29 14:30:00 +08:00
return nativeDelete(this, key) || state.frozen['delete'](key);
} return nativeDelete(this, key);
},
has: function has(key) {
if (isObject(key) && !isExtensible(key)) {
var state = enforceIternalState(this);
if (!state.frozen) { state.frozen = new InternalWeakMap(); }
2021-10-29 14:30:00 +08:00
return nativeHas(this, key) || state.frozen.has(key);
} return nativeHas(this, key);
},
get: function get(key) {
if (isObject(key) && !isExtensible(key)) {
var state = enforceIternalState(this);
if (!state.frozen) { state.frozen = new InternalWeakMap(); }
2021-10-29 14:30:00 +08:00
return nativeHas(this, key) ? nativeGet(this, key) : state.frozen.get(key);
} return nativeGet(this, key);
},
set: function set(key, value) {
if (isObject(key) && !isExtensible(key)) {
var state = enforceIternalState(this);
if (!state.frozen) { state.frozen = new InternalWeakMap(); }
2021-10-29 14:30:00 +08:00
nativeHas(this, key) ? nativeSet(this, key, value) : state.frozen.set(key, value);
} else { nativeSet(this, key, value); }
return this;
}
});
}
2021-05-12 15:34:21 +08:00
// `WeakSet` constructor
// https://tc39.es/ecma262/#sec-weakset-constructor
collection('WeakSet', function (init) {
return function WeakSet() { return init(this, arguments.length ? arguments[0] : undefined); };
}, collectionWeak);
2021-05-12 15:34:21 +08:00
2021-10-29 14:30:00 +08:00
var USE_FUNCTION_CONSTRUCTOR = 'USE_FUNCTION_CONSTRUCTOR';
var ASYNC_ITERATOR$3 = wellKnownSymbol('asyncIterator');
var AsyncIterator = global_1.AsyncIterator;
var PassedAsyncIteratorPrototype = sharedStore.AsyncIteratorPrototype;
var AsyncIteratorPrototype, prototype;
if (PassedAsyncIteratorPrototype) {
AsyncIteratorPrototype = PassedAsyncIteratorPrototype;
} else if (isCallable(AsyncIterator)) {
AsyncIteratorPrototype = AsyncIterator.prototype;
} else if (sharedStore[USE_FUNCTION_CONSTRUCTOR] || global_1[USE_FUNCTION_CONSTRUCTOR]) {
try {
// eslint-disable-next-line no-new-func -- we have no alternatives without usage of modern syntax
prototype = objectGetPrototypeOf(objectGetPrototypeOf(objectGetPrototypeOf(Function('return async function*(){}()')())));
if (objectGetPrototypeOf(prototype) === Object.prototype) { AsyncIteratorPrototype = prototype; }
} catch (error) { /* empty */ }
}
if (!AsyncIteratorPrototype) { AsyncIteratorPrototype = {}; }
if (!isCallable(AsyncIteratorPrototype[ASYNC_ITERATOR$3])) {
redefine(AsyncIteratorPrototype, ASYNC_ITERATOR$3, function () {
return this;
});
}
var asyncIteratorPrototype = AsyncIteratorPrototype;
var Promise$3 = getBuiltIn('Promise');
var setInternalState$9 = internalState.set;
var getInternalState$7 = internalState.get;
var asyncFromSyncIteratorContinuation = function (result, resolve, reject) {
var done = result.done;
Promise$3.resolve(result.value).then(function (value) {
resolve({ done: done, value: value });
}, reject);
};
var AsyncFromSyncIterator = function AsyncIterator(iterator) {
setInternalState$9(this, {
iterator: anObject(iterator),
next: iterator.next
});
};
AsyncFromSyncIterator.prototype = redefineAll(objectCreate(asyncIteratorPrototype), {
next: function next(arg) {
var state = getInternalState$7(this);
var hasArg = !!arguments.length;
return new Promise$3(function (resolve, reject) {
var result = anObject(functionApply(state.next, state.iterator, hasArg ? [arg] : []));
asyncFromSyncIteratorContinuation(result, resolve, reject);
});
},
'return': function (arg) {
var iterator = getInternalState$7(this).iterator;
var hasArg = !!arguments.length;
return new Promise$3(function (resolve, reject) {
var $return = getMethod(iterator, 'return');
if ($return === undefined) { return resolve({ done: true, value: arg }); }
var result = anObject(functionApply($return, iterator, hasArg ? [arg] : []));
asyncFromSyncIteratorContinuation(result, resolve, reject);
});
},
'throw': function (arg) {
var iterator = getInternalState$7(this).iterator;
var hasArg = !!arguments.length;
return new Promise$3(function (resolve, reject) {
var $throw = getMethod(iterator, 'throw');
if ($throw === undefined) { return reject(arg); }
var result = anObject(functionApply($throw, iterator, hasArg ? [arg] : []));
asyncFromSyncIteratorContinuation(result, resolve, reject);
});
}
});
2021-05-12 15:34:21 +08:00
2021-10-29 14:30:00 +08:00
var asyncFromSyncIterator = AsyncFromSyncIterator;
var ASYNC_ITERATOR$2 = wellKnownSymbol('asyncIterator');
var getAsyncIterator = function (it, usingIterator) {
var method = arguments.length < 2 ? getMethod(it, ASYNC_ITERATOR$2) : usingIterator;
return method ? anObject(functionCall(method, it)) : new asyncFromSyncIterator(getIterator(it));
};
var entryVirtual = function (CONSTRUCTOR) {
return global_1[CONSTRUCTOR].prototype;
};
// https://github.com/tc39/proposal-iterator-helpers
// https://github.com/tc39/proposal-array-from-async
2021-02-19 17:33:10 +08:00
2021-10-29 14:30:00 +08:00
var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;
var TypeError$e = global_1.TypeError;
var createMethod$1 = function (TYPE) {
var IS_TO_ARRAY = TYPE == 0;
var IS_FOR_EACH = TYPE == 1;
var IS_EVERY = TYPE == 2;
var IS_SOME = TYPE == 3;
return function (iterator, fn, target) {
anObject(iterator);
var Promise = getBuiltIn('Promise');
var next = aCallable(iterator.next);
var index = 0;
var MAPPING = fn !== undefined;
if (MAPPING || !IS_TO_ARRAY) { aCallable(fn); }
return new Promise(function (resolve, reject) {
var closeIteration = function (method, argument) {
try {
var returnMethod = getMethod(iterator, 'return');
if (returnMethod) {
return Promise.resolve(functionCall(returnMethod, iterator)).then(function () {
method(argument);
}, function (error) {
reject(error);
});
}
} catch (error2) {
return reject(error2);
} method(argument);
};
var onError = function (error) {
closeIteration(reject, error);
};
var loop = function () {
try {
if (IS_TO_ARRAY && (index > MAX_SAFE_INTEGER) && MAPPING) {
throw TypeError$e('The allowed number of iterations has been exceeded');
}
Promise.resolve(anObject(functionCall(next, iterator))).then(function (step) {
try {
if (anObject(step).done) {
if (IS_TO_ARRAY) {
target.length = index;
resolve(target);
} else { resolve(IS_SOME ? false : IS_EVERY || undefined); }
} else {
var value = step.value;
if (MAPPING) {
Promise.resolve(IS_TO_ARRAY ? fn(value, index) : fn(value)).then(function (result) {
if (IS_FOR_EACH) {
loop();
} else if (IS_EVERY) {
result ? loop() : closeIteration(resolve, false);
} else if (IS_TO_ARRAY) {
target[index++] = result;
loop();
} else {
result ? closeIteration(resolve, IS_SOME || value) : loop();
}
}, onError);
} else {
target[index++] = value;
loop();
}
}
} catch (error) { onError(error); }
}, onError);
} catch (error2) { onError(error2); }
};
loop();
});
};
};
var asyncIteratorIteration = {
toArray: createMethod$1(0),
forEach: createMethod$1(1),
every: createMethod$1(2),
some: createMethod$1(3),
find: createMethod$1(4)
};
var toArray = asyncIteratorIteration.toArray;
var ASYNC_ITERATOR$1 = wellKnownSymbol('asyncIterator');
var arrayIterator = entryVirtual('Array').values;
// `Array.fromAsync` method implementation
// https://github.com/tc39/proposal-array-from-async
var arrayFromAsync = function fromAsync(asyncItems /* , mapfn = undefined, thisArg = undefined */) {
var C = this;
var argumentsLength = arguments.length;
var mapfn = argumentsLength > 1 ? arguments[1] : undefined;
var thisArg = argumentsLength > 2 ? arguments[2] : undefined;
return new (getBuiltIn('Promise'))(function (resolve) {
var O = toObject(asyncItems);
if (mapfn !== undefined) { mapfn = functionBindContext(mapfn, thisArg); }
var usingAsyncIterator = getMethod(O, ASYNC_ITERATOR$1);
var usingSyncIterator = usingAsyncIterator ? undefined : getIteratorMethod(O) || arrayIterator;
var A = isConstructor(C) ? new C() : [];
var iterator = usingAsyncIterator
? getAsyncIterator(O, usingAsyncIterator)
: new asyncFromSyncIterator(getIterator(O, usingSyncIterator));
resolve(toArray(iterator, mapfn, A));
});
};
// `Array.fromAsync` method
// https://github.com/tc39/proposal-array-from-async
_export({ target: 'Array', stat: true }, {
fromAsync: arrayFromAsync
});
// TODO: remove from `core-js@4`
var $filterReject$3 = arrayIteration.filterReject;
2021-02-19 17:33:10 +08:00
// `Array.prototype.filterOut` method
// https://github.com/tc39/proposal-array-filtering
_export({ target: 'Array', proto: true }, {
filterOut: function filterOut(callbackfn /* , thisArg */) {
2021-10-29 14:30:00 +08:00
return $filterReject$3(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
2021-09-22 10:28:02 +08:00
}
});
2021-02-19 17:33:10 +08:00
addToUnscopables('filterOut');
2021-02-19 17:33:10 +08:00
2021-10-29 14:30:00 +08:00
var $filterReject$2 = arrayIteration.filterReject;
// `Array.prototype.filterReject` method
// https://github.com/tc39/proposal-array-filtering
_export({ target: 'Array', proto: true }, {
filterReject: function filterReject(callbackfn /* , thisArg */) {
return $filterReject$2(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
}
});
addToUnscopables('filterReject');
// `Array.prototype.{ findLast, findLastIndex }` methods implementation
2021-10-29 14:30:00 +08:00
var createMethod = function (TYPE) {
var IS_FIND_LAST_INDEX = TYPE == 1;
return function ($this, callbackfn, that) {
var O = toObject($this);
var self = indexedObject(O);
2021-10-29 14:30:00 +08:00
var boundFunction = functionBindContext(callbackfn, that);
var index = lengthOfArrayLike(self);
var value, result;
while (index-- > 0) {
value = self[index];
result = boundFunction(value, index, O);
if (result) { switch (TYPE) {
2021-10-29 14:30:00 +08:00
case 0: return value; // findLast
case 1: return index; // findLastIndex
} }
}
2021-10-29 14:30:00 +08:00
return IS_FIND_LAST_INDEX ? -1 : undefined;
};
};
var arrayIterationFromLast = {
// `Array.prototype.findLast` method
// https://github.com/tc39/proposal-array-find-from-last
2021-10-29 14:30:00 +08:00
findLast: createMethod(0),
// `Array.prototype.findLastIndex` method
// https://github.com/tc39/proposal-array-find-from-last
2021-10-29 14:30:00 +08:00
findLastIndex: createMethod(1)
};
var $findLast$1 = arrayIterationFromLast.findLast;
// `Array.prototype.findLast` method
// https://github.com/tc39/proposal-array-find-from-last
_export({ target: 'Array', proto: true }, {
findLast: function findLast(callbackfn /* , that = undefined */) {
return $findLast$1(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
2021-09-01 10:47:40 +08:00
}
2021-09-22 10:28:02 +08:00
});
2021-02-19 17:33:10 +08:00
addToUnscopables('findLast');
2021-09-22 10:28:02 +08:00
var $findLastIndex$1 = arrayIterationFromLast.findLastIndex;
// `Array.prototype.findLastIndex` method
// https://github.com/tc39/proposal-array-find-from-last
_export({ target: 'Array', proto: true }, {
findLastIndex: function findLastIndex(callbackfn /* , that = undefined */) {
return $findLastIndex$1(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
}
});
addToUnscopables('findLastIndex');
2021-10-29 14:30:00 +08:00
var Array$2 = global_1.Array;
var push$9 = functionUncurryThis([].push);
var arrayGroupBy = function ($this, callbackfn, that, specificConstructor) {
var O = toObject($this);
var self = indexedObject(O);
var boundFunction = functionBindContext(callbackfn, that);
var target = objectCreate(null);
var length = lengthOfArrayLike(self);
var index = 0;
var Constructor, key, value;
for (;length > index; index++) {
value = self[index];
key = toPropertyKey(boundFunction(value, index, O));
// in some IE10 builds, `hasOwnProperty` returns incorrect result on integer keys
// but since it's a `null` prototype object, we can safely use `in`
if (key in target) { push$9(target[key], value); }
else { target[key] = [value]; }
}
if (specificConstructor) {
Constructor = specificConstructor(O);
if (Constructor !== Array$2) {
for (key in target) { target[key] = arrayFromConstructorAndList(Constructor, target[key]); }
}
} return target;
};
// `Array.prototype.groupBy` method
// https://github.com/tc39/proposal-array-grouping
_export({ target: 'Array', proto: true }, {
groupBy: function groupBy(callbackfn /* , thisArg */) {
var thisArg = arguments.length > 1 ? arguments[1] : undefined;
return arrayGroupBy(this, callbackfn, thisArg, arraySpeciesConstructor);
}
});
addToUnscopables('groupBy');
// eslint-disable-next-line es/no-object-isfrozen -- safe
var isFrozen = Object.isFrozen;
var isFrozenStringArray = function (array, allowUndefined) {
if (!isFrozen || !isArray(array) || !isFrozen(array)) { return false; }
var index = 0;
var length = array.length;
var element;
while (index < length) {
element = array[index++];
2021-10-29 14:30:00 +08:00
if (!(typeof element == 'string' || (allowUndefined && typeof element == 'undefined'))) {
return false;
}
} return length !== 0;
2021-05-12 15:34:21 +08:00
};
2021-02-19 17:33:10 +08:00
// `Array.isTemplateObject` method
// https://github.com/tc39/proposal-array-is-template-object
_export({ target: 'Array', stat: true }, {
isTemplateObject: function isTemplateObject(value) {
if (!isFrozenStringArray(value, true)) { return false; }
var raw = value.raw;
if (raw.length !== value.length || !isFrozenStringArray(raw, false)) { return false; }
return true;
}
});
2020-01-17 14:55:39 +08:00
var defineProperty$2 = objectDefineProperty.f;
2020-01-17 14:55:39 +08:00
// `Array.prototype.lastIndex` getter
// https://github.com/keithamus/proposal-array-last
if (descriptors && !('lastIndex' in [])) {
defineProperty$2(Array.prototype, 'lastIndex', {
configurable: true,
get: function lastIndex() {
var O = toObject(this);
2021-10-29 14:30:00 +08:00
var len = lengthOfArrayLike(O);
return len == 0 ? 0 : len - 1;
}
});
2021-05-12 15:34:21 +08:00
addToUnscopables('lastIndex');
}
2020-01-17 14:55:39 +08:00
var defineProperty$1 = objectDefineProperty.f;
2020-01-17 14:55:39 +08:00
// `Array.prototype.lastIndex` accessor
// https://github.com/keithamus/proposal-array-last
if (descriptors && !('lastItem' in [])) {
defineProperty$1(Array.prototype, 'lastItem', {
configurable: true,
get: function lastItem() {
var O = toObject(this);
2021-10-29 14:30:00 +08:00
var len = lengthOfArrayLike(O);
return len == 0 ? undefined : O[len - 1];
},
set: function lastItem(value) {
var O = toObject(this);
2021-10-29 14:30:00 +08:00
var len = lengthOfArrayLike(O);
return O[len == 0 ? 0 : len - 1] = value;
}
});
2020-01-17 14:55:39 +08:00
addToUnscopables('lastItem');
}
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var Map$3 = getBuiltIn('Map');
var MapPrototype = Map$3.prototype;
var mapForEach = functionUncurryThis(MapPrototype.forEach);
var mapHas = functionUncurryThis(MapPrototype.has);
var mapSet = functionUncurryThis(MapPrototype.set);
var push$8 = functionUncurryThis([].push);
2020-01-17 14:55:39 +08:00
// `Array.prototype.uniqueBy` method
// https://github.com/tc39/proposal-array-unique
2021-10-29 14:30:00 +08:00
var arrayUniqueBy$2 = function uniqueBy(resolver) {
var that = toObject(this);
2021-10-29 14:30:00 +08:00
var length = lengthOfArrayLike(that);
var result = arraySpeciesCreate(that, 0);
2021-10-29 14:30:00 +08:00
var map = new Map$3();
var resolverFunction = resolver != null ? aCallable(resolver) : function (value) {
return value;
2021-10-29 14:30:00 +08:00
};
var index, item, key;
for (index = 0; index < length; index++) {
item = that[index];
key = resolverFunction(item);
2021-10-29 14:30:00 +08:00
if (!mapHas(map, key)) { mapSet(map, key, item); }
}
2021-10-29 14:30:00 +08:00
mapForEach(map, function (value) {
push$8(result, value);
});
return result;
};
2021-05-12 15:34:21 +08:00
// `Array.prototype.uniqueBy` method
// https://github.com/tc39/proposal-array-unique
_export({ target: 'Array', proto: true }, {
2021-10-29 14:30:00 +08:00
uniqueBy: arrayUniqueBy$2
2021-09-22 10:28:02 +08:00
});
2021-05-12 15:34:21 +08:00
addToUnscopables('uniqueBy');
2021-09-22 10:28:02 +08:00
// https://github.com/tc39/proposal-iterator-helpers
2021-05-12 15:34:21 +08:00
2020-01-17 14:55:39 +08:00
2021-05-12 15:34:21 +08:00
2020-01-17 14:55:39 +08:00
var TO_STRING_TAG$4 = wellKnownSymbol('toStringTag');
2020-01-17 14:55:39 +08:00
var AsyncIteratorConstructor = function AsyncIterator() {
2021-10-29 14:30:00 +08:00
anInstance(this, asyncIteratorPrototype);
};
2020-01-17 14:55:39 +08:00
AsyncIteratorConstructor.prototype = asyncIteratorPrototype;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
if (!hasOwnProperty_1(asyncIteratorPrototype, TO_STRING_TAG$4)) {
createNonEnumerableProperty(asyncIteratorPrototype, TO_STRING_TAG$4, 'AsyncIterator');
}
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
if (!hasOwnProperty_1(asyncIteratorPrototype, 'constructor') || asyncIteratorPrototype.constructor === Object) {
createNonEnumerableProperty(asyncIteratorPrototype, 'constructor', AsyncIteratorConstructor);
}
2020-01-17 14:55:39 +08:00
_export({ global: true, forced: isPure }, {
AsyncIterator: AsyncIteratorConstructor
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var Promise$2 = getBuiltIn('Promise');
2020-01-17 14:55:39 +08:00
var setInternalState$8 = internalState.set;
var getInternalState$6 = internalState.get;
2021-09-22 10:28:02 +08:00
var TO_STRING_TAG$3 = wellKnownSymbol('toStringTag');
2021-09-22 10:28:02 +08:00
var asyncIteratorCreateProxy = function (nextHandler, IS_ITERATOR) {
var AsyncIteratorProxy = function AsyncIterator(state) {
2021-10-29 14:30:00 +08:00
state.next = aCallable(state.iterator.next);
state.done = false;
2021-10-29 14:30:00 +08:00
state.ignoreArgument = !IS_ITERATOR;
setInternalState$8(this, state);
};
2021-10-29 14:30:00 +08:00
AsyncIteratorProxy.prototype = redefineAll(objectCreate(asyncIteratorPrototype), {
next: function next(arg) {
2021-10-29 14:30:00 +08:00
var that = this;
var hasArgument = !!arguments.length;
return new Promise$2(function (resolve) {
var state = getInternalState$6(that);
var args = hasArgument ? [state.ignoreArgument ? undefined : arg] : IS_ITERATOR ? [] : [undefined];
state.ignoreArgument = false;
resolve(state.done ? { done: true, value: undefined } : anObject(functionCall(nextHandler, state, Promise$2, args)));
});
},
'return': function (value) {
var that = this;
return new Promise$2(function (resolve, reject) {
var state = getInternalState$6(that);
var iterator = state.iterator;
state.done = true;
var $$return = getMethod(iterator, 'return');
if ($$return === undefined) { return resolve({ done: true, value: value }); }
Promise$2.resolve(functionCall($$return, iterator, value)).then(function (result) {
anObject(result);
resolve({ done: true, value: value });
}, reject);
});
},
2021-10-29 14:30:00 +08:00
'throw': function (value) {
var that = this;
return new Promise$2(function (resolve, reject) {
var state = getInternalState$6(that);
var iterator = state.iterator;
state.done = true;
var $$throw = getMethod(iterator, 'throw');
if ($$throw === undefined) { return reject(value); }
resolve(functionCall($$throw, iterator, value));
});
}
});
if (!IS_ITERATOR) {
createNonEnumerableProperty(AsyncIteratorProxy.prototype, TO_STRING_TAG$3, 'Generator');
2021-09-01 10:47:40 +08:00
}
return AsyncIteratorProxy;
};
2021-09-22 10:28:02 +08:00
// https://github.com/tc39/proposal-iterator-helpers
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
var AsyncIteratorProxy$6 = asyncIteratorCreateProxy(function (Promise, args) {
var state = this;
var iterator = state.iterator;
2021-10-29 14:30:00 +08:00
return Promise.resolve(anObject(functionApply(state.next, iterator, args))).then(function (step) {
if (anObject(step).done) {
state.done = true;
return { done: true, value: undefined };
2021-09-01 10:47:40 +08:00
}
return { done: false, value: [state.index++, step.value] };
});
});
_export({ target: 'AsyncIterator', proto: true, real: true }, {
asIndexedPairs: function asIndexedPairs() {
return new AsyncIteratorProxy$6({
iterator: anObject(this),
index: 0
});
2021-09-01 10:47:40 +08:00
}
});
2021-05-12 15:34:21 +08:00
// https://github.com/tc39/proposal-iterator-helpers
2021-05-12 15:34:21 +08:00
2020-01-17 14:55:39 +08:00
2021-05-12 15:34:21 +08:00
2021-10-29 14:30:00 +08:00
var AsyncIteratorProxy$5 = asyncIteratorCreateProxy(function (Promise, args) {
var state = this;
2021-05-12 15:34:21 +08:00
return new Promise(function (resolve, reject) {
var loop = function () {
try {
Promise.resolve(
2021-10-29 14:30:00 +08:00
anObject(functionApply(state.next, state.iterator, state.remaining ? [] : args))
).then(function (step) {
try {
if (anObject(step).done) {
state.done = true;
resolve({ done: true, value: undefined });
} else if (state.remaining) {
state.remaining--;
loop();
} else { resolve({ done: false, value: step.value }); }
} catch (err) { reject(err); }
2021-10-29 14:30:00 +08:00
}, reject);
} catch (error) { reject(error); }
};
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
loop();
});
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
_export({ target: 'AsyncIterator', proto: true, real: true }, {
drop: function drop(limit) {
return new AsyncIteratorProxy$5({
iterator: anObject(this),
remaining: toPositiveInteger(limit)
});
}
});
2020-01-17 14:55:39 +08:00
// https://github.com/tc39/proposal-iterator-helpers
2020-01-17 14:55:39 +08:00
var $every = asyncIteratorIteration.every;
2020-01-17 14:55:39 +08:00
_export({ target: 'AsyncIterator', proto: true, real: true }, {
every: function every(fn) {
return $every(this, fn);
}
});
2021-09-01 10:47:40 +08:00
// https://github.com/tc39/proposal-iterator-helpers
2021-09-01 10:47:40 +08:00
2021-10-29 14:30:00 +08:00
var AsyncIteratorProxy$4 = asyncIteratorCreateProxy(function (Promise, args) {
var state = this;
var filterer = state.filterer;
2021-09-01 10:47:40 +08:00
return new Promise(function (resolve, reject) {
var loop = function () {
try {
2021-10-29 14:30:00 +08:00
Promise.resolve(anObject(functionApply(state.next, state.iterator, args))).then(function (step) {
try {
if (anObject(step).done) {
state.done = true;
resolve({ done: true, value: undefined });
} else {
var value = step.value;
Promise.resolve(filterer(value)).then(function (selected) {
selected ? resolve({ done: false, value: value }) : loop();
}, reject);
}
} catch (err) { reject(err); }
}, reject);
} catch (error) { reject(error); }
};
2021-09-01 10:47:40 +08:00
loop();
});
});
2021-09-01 10:47:40 +08:00
_export({ target: 'AsyncIterator', proto: true, real: true }, {
filter: function filter(filterer) {
return new AsyncIteratorProxy$4({
iterator: anObject(this),
2021-10-29 14:30:00 +08:00
filterer: aCallable(filterer)
});
}
});
2021-09-01 10:47:40 +08:00
// https://github.com/tc39/proposal-iterator-helpers
2021-09-01 10:47:40 +08:00
var $find = asyncIteratorIteration.find;
2021-09-01 10:47:40 +08:00
_export({ target: 'AsyncIterator', proto: true, real: true }, {
find: function find(fn) {
return $find(this, fn);
2021-09-01 10:47:40 +08:00
}
});
2021-09-01 10:47:40 +08:00
// https://github.com/tc39/proposal-iterator-helpers
2021-09-01 10:47:40 +08:00
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
var AsyncIteratorProxy$3 = asyncIteratorCreateProxy(function (Promise) {
var state = this;
var mapper = state.mapper;
2021-10-29 14:30:00 +08:00
var innerIterator;
2021-09-01 10:47:40 +08:00
return new Promise(function (resolve, reject) {
var outerLoop = function () {
try {
2021-10-29 14:30:00 +08:00
Promise.resolve(anObject(functionCall(state.next, state.iterator))).then(function (step) {
try {
if (anObject(step).done) {
state.done = true;
resolve({ done: true, value: undefined });
} else {
Promise.resolve(mapper(step.value)).then(function (mapped) {
try {
2021-10-29 14:30:00 +08:00
state.innerIterator = innerIterator = getAsyncIterator(mapped);
state.innerNext = aCallable(innerIterator.next);
return innerLoop();
} catch (error2) { reject(error2); }
}, reject);
}
} catch (error1) { reject(error1); }
}, reject);
} catch (error) { reject(error); }
};
2021-09-01 10:47:40 +08:00
var innerLoop = function () {
if (innerIterator = state.innerIterator) {
try {
2021-10-29 14:30:00 +08:00
Promise.resolve(anObject(functionCall(state.innerNext, innerIterator))).then(function (result) {
try {
if (anObject(result).done) {
state.innerIterator = state.innerNext = null;
outerLoop();
} else { resolve({ done: false, value: result.value }); }
} catch (error1) { reject(error1); }
}, reject);
} catch (error) { reject(error); }
} else { outerLoop(); }
};
2021-09-22 10:28:02 +08:00
innerLoop();
});
});
2021-09-22 10:28:02 +08:00
_export({ target: 'AsyncIterator', proto: true, real: true }, {
flatMap: function flatMap(mapper) {
return new AsyncIteratorProxy$3({
iterator: anObject(this),
2021-10-29 14:30:00 +08:00
mapper: aCallable(mapper),
innerIterator: null,
innerNext: null
});
2021-09-01 10:47:40 +08:00
}
});
2021-09-01 10:47:40 +08:00
// https://github.com/tc39/proposal-iterator-helpers
2021-09-01 10:47:40 +08:00
var $forEach = asyncIteratorIteration.forEach;
_export({ target: 'AsyncIterator', proto: true, real: true }, {
forEach: function forEach(fn) {
return $forEach(this, fn);
2021-09-01 10:47:40 +08:00
}
});
2021-09-01 10:47:40 +08:00
// https://github.com/tc39/proposal-iterator-helpers
2021-09-01 10:47:40 +08:00
2021-10-29 14:30:00 +08:00
var ASYNC_ITERATOR = wellKnownSymbol('asyncIterator');
var AsyncIteratorProxy$2 = asyncIteratorCreateProxy(function (Promise, args) {
return anObject(functionApply(this.next, this.iterator, args));
}, true);
2021-09-01 10:47:40 +08:00
_export({ target: 'AsyncIterator', stat: true }, {
from: function from(O) {
var object = toObject(O);
2021-10-29 14:30:00 +08:00
var usingIterator = getMethod(object, ASYNC_ITERATOR);
var iterator;
2021-10-29 14:30:00 +08:00
if (usingIterator) {
iterator = getAsyncIterator(object, usingIterator);
if (objectIsPrototypeOf(asyncIteratorPrototype, iterator)) { return iterator; }
}
if (iterator === undefined) {
usingIterator = getIteratorMethod(object);
if (usingIterator) { return new asyncFromSyncIterator(getIterator(object, usingIterator)); }
}
return new AsyncIteratorProxy$2({ iterator: iterator !== undefined ? iterator : object });
}
});
2021-09-01 10:47:40 +08:00
// https://github.com/tc39/proposal-iterator-helpers
2021-09-01 10:47:40 +08:00
2020-01-17 14:55:39 +08:00
2021-05-12 15:34:21 +08:00
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
var AsyncIteratorProxy$1 = asyncIteratorCreateProxy(function (Promise, args) {
var state = this;
var mapper = state.mapper;
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
return Promise.resolve(anObject(functionApply(state.next, state.iterator, args))).then(function (step) {
if (anObject(step).done) {
state.done = true;
return { done: true, value: undefined };
}
return Promise.resolve(mapper(step.value)).then(function (value) {
return { done: false, value: value };
});
});
});
2021-09-22 10:28:02 +08:00
_export({ target: 'AsyncIterator', proto: true, real: true }, {
map: function map(mapper) {
return new AsyncIteratorProxy$1({
iterator: anObject(this),
2021-10-29 14:30:00 +08:00
mapper: aCallable(mapper)
});
}
});
2021-09-22 10:28:02 +08:00
// https://github.com/tc39/proposal-iterator-helpers
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
var Promise$1 = getBuiltIn('Promise');
2021-10-29 14:30:00 +08:00
var TypeError$d = global_1.TypeError;
2021-09-22 10:28:02 +08:00
_export({ target: 'AsyncIterator', proto: true, real: true }, {
reduce: function reduce(reducer /* , initialValue */) {
var iterator = anObject(this);
2021-10-29 14:30:00 +08:00
var next = aCallable(iterator.next);
var noInitial = arguments.length < 2;
var accumulator = noInitial ? undefined : arguments[1];
2021-10-29 14:30:00 +08:00
aCallable(reducer);
return new Promise$1(function (resolve, reject) {
var loop = function () {
try {
2021-10-29 14:30:00 +08:00
Promise$1.resolve(anObject(functionCall(next, iterator))).then(function (step) {
try {
if (anObject(step).done) {
2021-10-29 14:30:00 +08:00
noInitial ? reject(TypeError$d('Reduce of empty iterator with no initial value')) : resolve(accumulator);
} else {
var value = step.value;
if (noInitial) {
noInitial = false;
accumulator = value;
loop();
} else {
Promise$1.resolve(reducer(accumulator, value)).then(function (result) {
accumulator = result;
loop();
}, reject);
}
}
} catch (err) { reject(err); }
}, reject);
} catch (error) { reject(error); }
};
loop();
});
}
});
2021-09-22 10:28:02 +08:00
// https://github.com/tc39/proposal-iterator-helpers
var $some = asyncIteratorIteration.some;
_export({ target: 'AsyncIterator', proto: true, real: true }, {
some: function some(fn) {
return $some(this, fn);
2021-09-22 10:28:02 +08:00
}
});
// https://github.com/tc39/proposal-iterator-helpers
2021-10-29 14:30:00 +08:00
var AsyncIteratorProxy = asyncIteratorCreateProxy(function (Promise, args) {
var iterator = this.iterator;
var returnMethod, result;
if (!this.remaining--) {
result = { done: true, value: undefined };
this.done = true;
returnMethod = iterator['return'];
if (returnMethod !== undefined) {
2021-10-29 14:30:00 +08:00
return Promise.resolve(functionCall(returnMethod, iterator)).then(function () {
return result;
});
}
return result;
2021-10-29 14:30:00 +08:00
} return functionApply(this.next, iterator, args);
});
_export({ target: 'AsyncIterator', proto: true, real: true }, {
take: function take(limit) {
return new AsyncIteratorProxy({
iterator: anObject(this),
remaining: toPositiveInteger(limit)
});
}
});
2021-09-22 10:28:02 +08:00
// https://github.com/tc39/proposal-iterator-helpers
2021-09-22 10:28:02 +08:00
var $toArray = asyncIteratorIteration.toArray;
2021-09-22 10:28:02 +08:00
_export({ target: 'AsyncIterator', proto: true, real: true }, {
toArray: function toArray() {
2021-10-29 14:30:00 +08:00
return $toArray(this, undefined, []);
}
});
2021-09-22 10:28:02 +08:00
var INCORRECT_RANGE = 'Incorrect Number.range arguments';
var NUMERIC_RANGE_ITERATOR = 'NumericRangeIterator';
var setInternalState$7 = internalState.set;
var getInternalState$5 = internalState.getterFor(NUMERIC_RANGE_ITERATOR);
2021-10-29 14:30:00 +08:00
var RangeError$2 = global_1.RangeError;
var TypeError$c = global_1.TypeError;
var $RangeIterator = createIteratorConstructor(function NumericRangeIterator(start, end, option, type, zero, one) {
if (typeof start != type || (end !== Infinity && end !== -Infinity && typeof end != type)) {
2021-10-29 14:30:00 +08:00
throw new TypeError$c(INCORRECT_RANGE);
}
if (start === Infinity || start === -Infinity) {
2021-10-29 14:30:00 +08:00
throw new RangeError$2(INCORRECT_RANGE);
}
var ifIncrease = end > start;
var inclusiveEnd = false;
var step;
if (option === undefined) {
step = undefined;
} else if (isObject(option)) {
step = option.step;
inclusiveEnd = !!option.inclusive;
} else if (typeof option == type) {
step = option;
} else {
2021-10-29 14:30:00 +08:00
throw new TypeError$c(INCORRECT_RANGE);
}
if (step == null) {
step = ifIncrease ? one : -one;
}
if (typeof step != type) {
2021-10-29 14:30:00 +08:00
throw new TypeError$c(INCORRECT_RANGE);
}
if (step === Infinity || step === -Infinity || (step === zero && start !== end)) {
2021-10-29 14:30:00 +08:00
throw new RangeError$2(INCORRECT_RANGE);
}
// eslint-disable-next-line no-self-compare -- NaN check
var hitsEnd = start != start || end != end || step != step || (end > start) !== (step > zero);
setInternalState$7(this, {
type: NUMERIC_RANGE_ITERATOR,
start: start,
end: end,
step: step,
inclusiveEnd: inclusiveEnd,
hitsEnd: hitsEnd,
currentCount: zero,
zero: zero
});
if (!descriptors) {
this.start = start;
this.end = end;
this.step = step;
this.inclusive = inclusiveEnd;
}
}, NUMERIC_RANGE_ITERATOR, function next() {
var state = getInternalState$5(this);
if (state.hitsEnd) { return { value: undefined, done: true }; }
var start = state.start;
var end = state.end;
var step = state.step;
var currentYieldingValue = start + (step * state.currentCount++);
if (currentYieldingValue === end) { state.hitsEnd = true; }
var inclusiveEnd = state.inclusiveEnd;
var endCondition;
if (end > start) {
endCondition = inclusiveEnd ? currentYieldingValue > end : currentYieldingValue >= end;
} else {
endCondition = inclusiveEnd ? end > currentYieldingValue : end >= currentYieldingValue;
}
if (endCondition) {
return { value: undefined, done: state.hitsEnd = true };
} return { value: currentYieldingValue, done: false };
});
var getter = function (fn) {
return { get: fn, set: function () { /* empty */ }, configurable: true, enumerable: false };
};
2021-09-22 10:28:02 +08:00
if (descriptors) {
objectDefineProperties($RangeIterator.prototype, {
start: getter(function () {
return getInternalState$5(this).start;
}),
end: getter(function () {
return getInternalState$5(this).end;
}),
inclusive: getter(function () {
return getInternalState$5(this).inclusiveEnd;
}),
step: getter(function () {
return getInternalState$5(this).step;
})
});
}
var numericRangeIterator = $RangeIterator;
/* eslint-disable es/no-bigint -- safe */
// `BigInt.range` method
// https://github.com/tc39/proposal-Number.range
if (typeof BigInt == 'function') {
_export({ target: 'BigInt', stat: true }, {
range: function range(start, end, option) {
return new numericRangeIterator(start, end, option, 'bigint', BigInt(0), BigInt(1));
}
});
}
2021-09-22 10:28:02 +08:00
// TODO: in core-js@4, move /modules/ dependencies to public entries for better optimization by tools like `preset-env`
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
var Object$2 = global_1.Object;
var TypeError$b = global_1.TypeError;
var Map$2 = getBuiltIn('Map');
var WeakMap$2 = getBuiltIn('WeakMap');
var Node = function () {
// keys
this.object = null;
this.symbol = null;
// child nodes
this.primitives = null;
this.objectsByIndex = objectCreate(null);
};
2021-09-22 10:28:02 +08:00
Node.prototype.get = function (key, initializer) {
return this[key] || (this[key] = initializer());
};
2021-09-22 10:28:02 +08:00
Node.prototype.next = function (i, it, IS_OBJECT) {
var store = IS_OBJECT
2021-10-29 14:30:00 +08:00
? this.objectsByIndex[i] || (this.objectsByIndex[i] = new WeakMap$2())
: this.primitives || (this.primitives = new Map$2());
var entry = store.get(it);
if (!entry) { store.set(it, entry = new Node()); }
return entry;
2021-09-01 10:47:40 +08:00
};
var root = new Node();
var compositeKey = function () {
var arguments$1 = arguments;
var active = root;
var length = arguments.length;
var i, it;
// for prevent leaking, start from objects
for (i = 0; i < length; i++) {
if (isObject(it = arguments$1[i])) { active = active.next(i, it, true); }
2021-09-01 10:47:40 +08:00
}
2021-10-29 14:30:00 +08:00
if (this === Object$2 && active === root) { throw TypeError$b('Composite keys must contain a non-primitive component'); }
for (i = 0; i < length; i++) {
if (!isObject(it = arguments$1[i])) { active = active.next(i, it, false); }
} return active;
2021-09-22 10:28:02 +08:00
};
2021-10-29 14:30:00 +08:00
var Object$1 = global_1.Object;
var initializer = function () {
var freeze = getBuiltIn('Object', 'freeze');
return freeze ? freeze(objectCreate(null)) : objectCreate(null);
2021-09-22 10:28:02 +08:00
};
// https://github.com/tc39/proposal-richer-keys/tree/master/compositeKey
_export({ global: true }, {
compositeKey: function compositeKey$1() {
2021-10-29 14:30:00 +08:00
return functionApply(compositeKey, Object$1, arguments).get('object', initializer);
}
});
2021-09-01 10:47:40 +08:00
// https://github.com/tc39/proposal-richer-keys/tree/master/compositeKey
_export({ global: true }, {
compositeSymbol: function compositeSymbol() {
2021-10-29 14:30:00 +08:00
if (arguments.length == 1 && typeof arguments[0] == 'string') { return getBuiltIn('Symbol')['for'](arguments[0]); }
return functionApply(compositeKey, null, arguments).get('symbol', getBuiltIn('Symbol'));
}
});
2021-09-01 10:47:40 +08:00
// https://github.com/tc39/proposal-iterator-helpers
2021-09-01 10:47:40 +08:00
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
var IteratorPrototype$2 = iteratorsCore.IteratorPrototype;
var TO_STRING_TAG$2 = wellKnownSymbol('toStringTag');
var NativeIterator = global_1.Iterator;
// FF56- have non-standard global helper `Iterator`
2021-10-29 14:30:00 +08:00
var FORCED$2 = !isCallable(NativeIterator)
|| NativeIterator.prototype !== IteratorPrototype$2
// FF44- non-standard `Iterator` passes previous tests
|| !fails(function () { NativeIterator({}); });
var IteratorConstructor = function Iterator() {
2021-10-29 14:30:00 +08:00
anInstance(this, IteratorPrototype$2);
};
2021-10-29 14:30:00 +08:00
if (!hasOwnProperty_1(IteratorPrototype$2, TO_STRING_TAG$2)) {
createNonEnumerableProperty(IteratorPrototype$2, TO_STRING_TAG$2, 'Iterator');
}
2021-10-29 14:30:00 +08:00
if (FORCED$2 || !hasOwnProperty_1(IteratorPrototype$2, 'constructor') || IteratorPrototype$2.constructor === Object) {
createNonEnumerableProperty(IteratorPrototype$2, 'constructor', IteratorConstructor);
}
2021-10-29 14:30:00 +08:00
IteratorConstructor.prototype = IteratorPrototype$2;
_export({ global: true, forced: FORCED$2 }, {
Iterator: IteratorConstructor
});
2021-10-29 14:30:00 +08:00
var IteratorPrototype$1 = iteratorsCore.IteratorPrototype;
var setInternalState$6 = internalState.set;
var getInternalState$4 = internalState.get;
var TO_STRING_TAG$1 = wellKnownSymbol('toStringTag');
var iteratorCreateProxy = function (nextHandler, IS_ITERATOR) {
var IteratorProxy = function Iterator(state) {
2021-10-29 14:30:00 +08:00
state.next = aCallable(state.iterator.next);
state.done = false;
2021-10-29 14:30:00 +08:00
state.ignoreArg = !IS_ITERATOR;
setInternalState$6(this, state);
};
2021-10-29 14:30:00 +08:00
IteratorProxy.prototype = redefineAll(objectCreate(IteratorPrototype$1), {
next: function next(arg) {
var state = getInternalState$4(this);
2021-10-29 14:30:00 +08:00
var args = arguments.length ? [state.ignoreArg ? undefined : arg] : IS_ITERATOR ? [] : [undefined];
state.ignoreArg = false;
var result = state.done ? undefined : functionCall(nextHandler, state, args);
return { done: state.done, value: result };
},
2021-10-29 14:30:00 +08:00
'return': function (value) {
var state = getInternalState$4(this);
var iterator = state.iterator;
state.done = true;
var $$return = getMethod(iterator, 'return');
return { done: true, value: $$return ? anObject(functionCall($$return, iterator, value)).value : value };
},
'throw': function (value) {
var state = getInternalState$4(this);
var iterator = state.iterator;
state.done = true;
var $$throw = getMethod(iterator, 'throw');
if ($$throw) { return functionCall($$throw, iterator, value); }
throw value;
}
});
if (!IS_ITERATOR) {
createNonEnumerableProperty(IteratorProxy.prototype, TO_STRING_TAG$1, 'Generator');
}
return IteratorProxy;
};
// https://github.com/tc39/proposal-iterator-helpers
2021-10-29 14:30:00 +08:00
var IteratorProxy$6 = iteratorCreateProxy(function (args) {
var result = anObject(functionApply(this.next, this.iterator, args));
var done = this.done = !!result.done;
if (!done) { return [this.index++, result.value]; }
});
_export({ target: 'Iterator', proto: true, real: true }, {
asIndexedPairs: function asIndexedPairs() {
return new IteratorProxy$6({
iterator: anObject(this),
index: 0
});
}
});
// https://github.com/tc39/proposal-iterator-helpers
2021-10-29 14:30:00 +08:00
var IteratorProxy$5 = iteratorCreateProxy(function (args) {
var iterator = this.iterator;
var next = this.next;
var result, done;
while (this.remaining) {
this.remaining--;
2021-10-29 14:30:00 +08:00
result = anObject(functionCall(next, iterator));
done = this.done = !!result.done;
if (done) { return; }
}
2021-10-29 14:30:00 +08:00
result = anObject(functionApply(next, iterator, args));
done = this.done = !!result.done;
if (!done) { return result.value; }
});
_export({ target: 'Iterator', proto: true, real: true }, {
drop: function drop(limit) {
return new IteratorProxy$5({
iterator: anObject(this),
remaining: toPositiveInteger(limit)
});
}
});
// https://github.com/tc39/proposal-iterator-helpers
_export({ target: 'Iterator', proto: true, real: true }, {
every: function every(fn) {
anObject(this);
2021-10-29 14:30:00 +08:00
aCallable(fn);
return !iterate(this, function (value, stop) {
if (!fn(value)) { return stop(); }
}, { IS_ITERATOR: true, INTERRUPTED: true }).stopped;
}
});
// https://github.com/tc39/proposal-iterator-helpers
2021-10-29 14:30:00 +08:00
var IteratorProxy$4 = iteratorCreateProxy(function (args) {
var iterator = this.iterator;
var filterer = this.filterer;
var next = this.next;
var result, done, value;
while (true) {
2021-10-29 14:30:00 +08:00
result = anObject(functionApply(next, iterator, args));
done = this.done = !!result.done;
if (done) { return; }
value = result.value;
if (callWithSafeIterationClosing(iterator, filterer, value)) { return value; }
}
});
_export({ target: 'Iterator', proto: true, real: true }, {
filter: function filter(filterer) {
return new IteratorProxy$4({
iterator: anObject(this),
2021-10-29 14:30:00 +08:00
filterer: aCallable(filterer)
});
}
});
// https://github.com/tc39/proposal-iterator-helpers
_export({ target: 'Iterator', proto: true, real: true }, {
find: function find(fn) {
anObject(this);
2021-10-29 14:30:00 +08:00
aCallable(fn);
return iterate(this, function (value, stop) {
if (fn(value)) { return stop(value); }
}, { IS_ITERATOR: true, INTERRUPTED: true }).result;
}
});
// https://github.com/tc39/proposal-iterator-helpers
2021-10-29 14:30:00 +08:00
var TypeError$a = global_1.TypeError;
var IteratorProxy$3 = iteratorCreateProxy(function () {
var iterator = this.iterator;
var mapper = this.mapper;
var result, mapped, iteratorMethod, innerIterator;
while (true) {
try {
if (innerIterator = this.innerIterator) {
2021-10-29 14:30:00 +08:00
result = anObject(functionCall(this.innerNext, innerIterator));
if (!result.done) { return result.value; }
this.innerIterator = this.innerNext = null;
}
2021-10-29 14:30:00 +08:00
result = anObject(functionCall(this.next, iterator));
if (this.done = !!result.done) { return; }
mapped = mapper(result.value);
iteratorMethod = getIteratorMethod(mapped);
2021-10-29 14:30:00 +08:00
if (!iteratorMethod) {
throw TypeError$a('.flatMap callback should return an iterable object');
}
2021-10-29 14:30:00 +08:00
this.innerIterator = innerIterator = anObject(functionCall(iteratorMethod, mapped));
this.innerNext = aCallable(innerIterator.next);
} catch (error) {
2021-10-29 14:30:00 +08:00
iteratorClose(iterator, 'throw', error);
}
}
});
_export({ target: 'Iterator', proto: true, real: true }, {
flatMap: function flatMap(mapper) {
return new IteratorProxy$3({
iterator: anObject(this),
2021-10-29 14:30:00 +08:00
mapper: aCallable(mapper),
innerIterator: null,
innerNext: null
});
}
});
// https://github.com/tc39/proposal-iterator-helpers
_export({ target: 'Iterator', proto: true, real: true }, {
forEach: function forEach(fn) {
iterate(anObject(this), fn, { IS_ITERATOR: true });
}
});
// https://github.com/tc39/proposal-iterator-helpers
2021-10-29 14:30:00 +08:00
var IteratorPrototype = iteratorsCore.IteratorPrototype;
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
var IteratorProxy$2 = iteratorCreateProxy(function (args) {
var result = anObject(functionApply(this.next, this.iterator, args));
var done = this.done = !!result.done;
if (!done) { return result.value; }
}, true);
2021-09-22 10:28:02 +08:00
_export({ target: 'Iterator', stat: true }, {
from: function from(O) {
var object = toObject(O);
var usingIterator = getIteratorMethod(object);
var iterator;
2021-10-29 14:30:00 +08:00
if (usingIterator) {
iterator = getIterator(object, usingIterator);
if (objectIsPrototypeOf(IteratorPrototype, iterator)) { return iterator; }
} else {
iterator = object;
2021-10-29 14:30:00 +08:00
} return new IteratorProxy$2({ iterator: iterator });
2021-09-22 10:28:02 +08:00
}
});
// https://github.com/tc39/proposal-iterator-helpers
2021-10-29 14:30:00 +08:00
var IteratorProxy$1 = iteratorCreateProxy(function (args) {
var iterator = this.iterator;
2021-10-29 14:30:00 +08:00
var result = anObject(functionApply(this.next, iterator, args));
var done = this.done = !!result.done;
if (!done) { return callWithSafeIterationClosing(iterator, this.mapper, result.value); }
});
_export({ target: 'Iterator', proto: true, real: true }, {
map: function map(mapper) {
return new IteratorProxy$1({
iterator: anObject(this),
2021-10-29 14:30:00 +08:00
mapper: aCallable(mapper)
});
}
});
// https://github.com/tc39/proposal-iterator-helpers
2021-10-29 14:30:00 +08:00
var TypeError$9 = global_1.TypeError;
_export({ target: 'Iterator', proto: true, real: true }, {
reduce: function reduce(reducer /* , initialValue */) {
anObject(this);
2021-10-29 14:30:00 +08:00
aCallable(reducer);
var noInitial = arguments.length < 2;
var accumulator = noInitial ? undefined : arguments[1];
iterate(this, function (value) {
if (noInitial) {
noInitial = false;
accumulator = value;
} else {
accumulator = reducer(accumulator, value);
}
}, { IS_ITERATOR: true });
2021-10-29 14:30:00 +08:00
if (noInitial) { throw TypeError$9('Reduce of empty iterator with no initial value'); }
return accumulator;
}
});
// https://github.com/tc39/proposal-iterator-helpers
_export({ target: 'Iterator', proto: true, real: true }, {
some: function some(fn) {
anObject(this);
2021-10-29 14:30:00 +08:00
aCallable(fn);
return iterate(this, function (value, stop) {
if (fn(value)) { return stop(); }
}, { IS_ITERATOR: true, INTERRUPTED: true }).stopped;
}
});
// https://github.com/tc39/proposal-iterator-helpers
2021-10-29 14:30:00 +08:00
var IteratorProxy = iteratorCreateProxy(function (args) {
var iterator = this.iterator;
if (!this.remaining--) {
this.done = true;
2021-10-29 14:30:00 +08:00
return iteratorClose(iterator, 'normal', undefined);
}
2021-10-29 14:30:00 +08:00
var result = anObject(functionApply(this.next, iterator, args));
var done = this.done = !!result.done;
if (!done) { return result.value; }
});
_export({ target: 'Iterator', proto: true, real: true }, {
take: function take(limit) {
return new IteratorProxy({
iterator: anObject(this),
remaining: toPositiveInteger(limit)
});
}
});
// https://github.com/tc39/proposal-iterator-helpers
2021-10-29 14:30:00 +08:00
var push$7 = [].push;
_export({ target: 'Iterator', proto: true, real: true }, {
toArray: function toArray() {
var result = [];
2021-10-29 14:30:00 +08:00
iterate(anObject(this), push$7, { that: result, IS_ITERATOR: true });
return result;
}
});
// https://github.com/tc39/collection-methods
2021-10-29 14:30:00 +08:00
var collectionDeleteAll = function deleteAll(/* ...elements */) {
var arguments$1 = arguments;
var collection = anObject(this);
2021-10-29 14:30:00 +08:00
var remover = aCallable(collection['delete']);
var allDeleted = true;
var wasDeleted;
for (var k = 0, len = arguments.length; k < len; k++) {
2021-10-29 14:30:00 +08:00
wasDeleted = functionCall(remover, collection, arguments$1[k]);
allDeleted = allDeleted && wasDeleted;
}
return !!allDeleted;
};
// `Map.prototype.deleteAll` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Map', proto: true, real: true, forced: isPure }, {
2021-10-29 14:30:00 +08:00
deleteAll: collectionDeleteAll
});
// `Map.prototype.emplace` method
// https://github.com/thumbsupep/proposal-upsert
var mapEmplace = function emplace(key, handler) {
var map = anObject(this);
2021-10-29 14:30:00 +08:00
var get = aCallable(map.get);
var has = aCallable(map.has);
var set = aCallable(map.set);
var value = (functionCall(has, map, key) && 'update' in handler)
? handler.update(functionCall(get, map, key), key, map)
: handler.insert(key, map);
2021-10-29 14:30:00 +08:00
functionCall(set, map, key, value);
return value;
};
// `Map.prototype.emplace` method
// https://github.com/thumbsupep/proposal-upsert
_export({ target: 'Map', proto: true, real: true, forced: isPure }, {
emplace: mapEmplace
});
var getMapIterator = function (it) {
// eslint-disable-next-line es/no-map -- safe
2021-10-29 14:30:00 +08:00
return functionCall(Map.prototype.entries, it);
};
// `Map.prototype.every` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Map', proto: true, real: true, forced: isPure }, {
every: function every(callbackfn /* , thisArg */) {
var map = anObject(this);
var iterator = getMapIterator(map);
2021-10-29 14:30:00 +08:00
var boundFunction = functionBindContext(callbackfn, arguments.length > 1 ? arguments[1] : undefined);
return !iterate(iterator, function (key, value, stop) {
if (!boundFunction(value, key, map)) { return stop(); }
}, { AS_ENTRIES: true, IS_ITERATOR: true, INTERRUPTED: true }).stopped;
}
});
// `Map.prototype.filter` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Map', proto: true, real: true, forced: isPure }, {
filter: function filter(callbackfn /* , thisArg */) {
var map = anObject(this);
var iterator = getMapIterator(map);
2021-10-29 14:30:00 +08:00
var boundFunction = functionBindContext(callbackfn, arguments.length > 1 ? arguments[1] : undefined);
var newMap = new (speciesConstructor(map, getBuiltIn('Map')))();
2021-10-29 14:30:00 +08:00
var setter = aCallable(newMap.set);
iterate(iterator, function (key, value) {
2021-10-29 14:30:00 +08:00
if (boundFunction(value, key, map)) { functionCall(setter, newMap, key, value); }
}, { AS_ENTRIES: true, IS_ITERATOR: true });
return newMap;
}
});
// `Map.prototype.find` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Map', proto: true, real: true, forced: isPure }, {
find: function find(callbackfn /* , thisArg */) {
var map = anObject(this);
var iterator = getMapIterator(map);
2021-10-29 14:30:00 +08:00
var boundFunction = functionBindContext(callbackfn, arguments.length > 1 ? arguments[1] : undefined);
return iterate(iterator, function (key, value, stop) {
if (boundFunction(value, key, map)) { return stop(value); }
}, { AS_ENTRIES: true, IS_ITERATOR: true, INTERRUPTED: true }).result;
}
});
// `Map.prototype.findKey` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Map', proto: true, real: true, forced: isPure }, {
findKey: function findKey(callbackfn /* , thisArg */) {
var map = anObject(this);
var iterator = getMapIterator(map);
2021-10-29 14:30:00 +08:00
var boundFunction = functionBindContext(callbackfn, arguments.length > 1 ? arguments[1] : undefined);
return iterate(iterator, function (key, value, stop) {
if (boundFunction(value, key, map)) { return stop(key); }
}, { AS_ENTRIES: true, IS_ITERATOR: true, INTERRUPTED: true }).result;
}
});
// https://tc39.github.io/proposal-setmap-offrom/
2021-10-29 14:30:00 +08:00
var push$6 = [].push;
var collectionFrom = function from(source /* , mapFn, thisArg */) {
var length = arguments.length;
var mapFn = length > 1 ? arguments[1] : undefined;
var mapping, array, n, boundFunction;
2021-10-29 14:30:00 +08:00
aConstructor(this);
mapping = mapFn !== undefined;
2021-10-29 14:30:00 +08:00
if (mapping) { aCallable(mapFn); }
if (source == undefined) { return new this(); }
array = [];
if (mapping) {
n = 0;
2021-10-29 14:30:00 +08:00
boundFunction = functionBindContext(mapFn, length > 2 ? arguments[2] : undefined);
iterate(source, function (nextItem) {
2021-10-29 14:30:00 +08:00
functionCall(push$6, array, boundFunction(nextItem, n++));
});
} else {
2021-10-29 14:30:00 +08:00
iterate(source, push$6, { that: array });
}
return new this(array);
};
// `Map.from` method
// https://tc39.github.io/proposal-setmap-offrom/#sec-map.from
_export({ target: 'Map', stat: true }, {
from: collectionFrom
});
2021-10-29 14:30:00 +08:00
var push$5 = functionUncurryThis([].push);
// `Map.groupBy` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Map', stat: true }, {
groupBy: function groupBy(iterable, keyDerivative) {
2021-10-29 14:30:00 +08:00
aCallable(keyDerivative);
var iterator = getIterator(iterable);
var newMap = new this();
2021-10-29 14:30:00 +08:00
var has = aCallable(newMap.has);
var get = aCallable(newMap.get);
var set = aCallable(newMap.set);
iterate(iterator, function (element) {
var derivedKey = keyDerivative(element);
2021-10-29 14:30:00 +08:00
if (!functionCall(has, newMap, derivedKey)) { functionCall(set, newMap, derivedKey, [element]); }
else { push$5(functionCall(get, newMap, derivedKey), element); }
}, { IS_ITERATOR: true });
return newMap;
}
});
2021-05-12 15:34:21 +08:00
// `SameValueZero` abstract operation
// https://tc39.es/ecma262/#sec-samevaluezero
var sameValueZero = function (x, y) {
// eslint-disable-next-line no-self-compare -- NaN check
return x === y || x != x && y != y;
};
// `Map.prototype.includes` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Map', proto: true, real: true, forced: isPure }, {
includes: function includes(searchElement) {
return iterate(getMapIterator(anObject(this)), function (key, value, stop) {
if (sameValueZero(value, searchElement)) { return stop(); }
}, { AS_ENTRIES: true, IS_ITERATOR: true, INTERRUPTED: true }).stopped;
}
});
// `Map.keyBy` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Map', stat: true }, {
keyBy: function keyBy(iterable, keyDerivative) {
var newMap = new this();
2021-10-29 14:30:00 +08:00
aCallable(keyDerivative);
var setter = aCallable(newMap.set);
iterate(iterable, function (element) {
2021-10-29 14:30:00 +08:00
functionCall(setter, newMap, keyDerivative(element), element);
});
return newMap;
}
});
2021-10-29 14:30:00 +08:00
// `Map.prototype.keyOf` method
2021-05-12 15:34:21 +08:00
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Map', proto: true, real: true, forced: isPure }, {
keyOf: function keyOf(searchElement) {
return iterate(getMapIterator(anObject(this)), function (key, value, stop) {
if (value === searchElement) { return stop(key); }
}, { AS_ENTRIES: true, IS_ITERATOR: true, INTERRUPTED: true }).result;
}
});
// `Map.prototype.mapKeys` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Map', proto: true, real: true, forced: isPure }, {
mapKeys: function mapKeys(callbackfn /* , thisArg */) {
var map = anObject(this);
var iterator = getMapIterator(map);
2021-10-29 14:30:00 +08:00
var boundFunction = functionBindContext(callbackfn, arguments.length > 1 ? arguments[1] : undefined);
2021-05-12 15:34:21 +08:00
var newMap = new (speciesConstructor(map, getBuiltIn('Map')))();
2021-10-29 14:30:00 +08:00
var setter = aCallable(newMap.set);
2021-05-12 15:34:21 +08:00
iterate(iterator, function (key, value) {
2021-10-29 14:30:00 +08:00
functionCall(setter, newMap, boundFunction(value, key, map), value);
2021-05-12 15:34:21 +08:00
}, { AS_ENTRIES: true, IS_ITERATOR: true });
return newMap;
}
});
// `Map.prototype.mapValues` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Map', proto: true, real: true, forced: isPure }, {
mapValues: function mapValues(callbackfn /* , thisArg */) {
var map = anObject(this);
var iterator = getMapIterator(map);
2021-10-29 14:30:00 +08:00
var boundFunction = functionBindContext(callbackfn, arguments.length > 1 ? arguments[1] : undefined);
2021-05-12 15:34:21 +08:00
var newMap = new (speciesConstructor(map, getBuiltIn('Map')))();
2021-10-29 14:30:00 +08:00
var setter = aCallable(newMap.set);
2021-05-12 15:34:21 +08:00
iterate(iterator, function (key, value) {
2021-10-29 14:30:00 +08:00
functionCall(setter, newMap, key, boundFunction(value, key, map));
2021-05-12 15:34:21 +08:00
}, { AS_ENTRIES: true, IS_ITERATOR: true });
return newMap;
}
});
// `Map.prototype.merge` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Map', proto: true, real: true, forced: isPure }, {
// eslint-disable-next-line no-unused-vars -- required for `.length`
merge: function merge(iterable /* ...iterbles */) {
var arguments$1 = arguments;
var map = anObject(this);
2021-10-29 14:30:00 +08:00
var setter = aCallable(map.set);
var argumentsLength = arguments.length;
2021-05-12 15:34:21 +08:00
var i = 0;
2021-10-29 14:30:00 +08:00
while (i < argumentsLength) {
2021-05-12 15:34:21 +08:00
iterate(arguments$1[i++], setter, { that: map, AS_ENTRIES: true });
}
return map;
}
});
// https://tc39.github.io/proposal-setmap-offrom/
var collectionOf = function of() {
2021-10-29 14:30:00 +08:00
return new this(arraySlice$1(arguments));
};
// `Map.of` method
// https://tc39.github.io/proposal-setmap-offrom/#sec-map.of
_export({ target: 'Map', stat: true }, {
of: collectionOf
});
2021-10-29 14:30:00 +08:00
var TypeError$8 = global_1.TypeError;
2021-05-12 15:34:21 +08:00
// `Map.prototype.reduce` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Map', proto: true, real: true, forced: isPure }, {
reduce: function reduce(callbackfn /* , initialValue */) {
var map = anObject(this);
var iterator = getMapIterator(map);
var noInitial = arguments.length < 2;
var accumulator = noInitial ? undefined : arguments[1];
2021-10-29 14:30:00 +08:00
aCallable(callbackfn);
2021-05-12 15:34:21 +08:00
iterate(iterator, function (key, value) {
if (noInitial) {
noInitial = false;
accumulator = value;
} else {
accumulator = callbackfn(accumulator, value, key, map);
}
}, { AS_ENTRIES: true, IS_ITERATOR: true });
2021-10-29 14:30:00 +08:00
if (noInitial) { throw TypeError$8('Reduce of empty map with no initial value'); }
2021-05-12 15:34:21 +08:00
return accumulator;
}
2020-01-17 14:55:39 +08:00
});
2021-05-12 15:34:21 +08:00
// `Set.prototype.some` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Map', proto: true, real: true, forced: isPure }, {
some: function some(callbackfn /* , thisArg */) {
var map = anObject(this);
var iterator = getMapIterator(map);
2021-10-29 14:30:00 +08:00
var boundFunction = functionBindContext(callbackfn, arguments.length > 1 ? arguments[1] : undefined);
2021-05-12 15:34:21 +08:00
return iterate(iterator, function (key, value, stop) {
if (boundFunction(value, key, map)) { return stop(); }
}, { AS_ENTRIES: true, IS_ITERATOR: true, INTERRUPTED: true }).stopped;
}
2020-01-17 14:55:39 +08:00
});
2021-10-29 14:30:00 +08:00
var TypeError$7 = global_1.TypeError;
2021-05-12 15:34:21 +08:00
// `Set.prototype.update` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Map', proto: true, real: true, forced: isPure }, {
update: function update(key, callback /* , thunk */) {
var map = anObject(this);
2021-10-29 14:30:00 +08:00
var get = aCallable(map.get);
var has = aCallable(map.has);
var set = aCallable(map.set);
2021-05-12 15:34:21 +08:00
var length = arguments.length;
2021-10-29 14:30:00 +08:00
aCallable(callback);
var isPresentInMap = functionCall(has, map, key);
2021-05-12 15:34:21 +08:00
if (!isPresentInMap && length < 3) {
2021-10-29 14:30:00 +08:00
throw TypeError$7('Updating absent value');
2021-05-12 15:34:21 +08:00
}
2021-10-29 14:30:00 +08:00
var value = isPresentInMap ? functionCall(get, map, key) : aCallable(length > 2 ? arguments[2] : undefined)(key, map);
functionCall(set, map, key, callback(value, key, map));
2021-05-12 15:34:21 +08:00
return map;
}
2020-01-17 14:55:39 +08:00
});
2021-10-29 14:30:00 +08:00
var TypeError$6 = global_1.TypeError;
// `Map.prototype.upsert` method
// https://github.com/thumbsupep/proposal-upsert
var mapUpsert = function upsert(key, updateFn /* , insertFn */) {
var map = anObject(this);
2021-10-29 14:30:00 +08:00
var get = aCallable(map.get);
var has = aCallable(map.has);
var set = aCallable(map.set);
var insertFn = arguments.length > 2 ? arguments[2] : undefined;
var value;
2021-10-29 14:30:00 +08:00
if (!isCallable(updateFn) && !isCallable(insertFn)) {
throw TypeError$6('At least one callback required');
2021-05-12 15:34:21 +08:00
}
2021-10-29 14:30:00 +08:00
if (functionCall(has, map, key)) {
value = functionCall(get, map, key);
if (isCallable(updateFn)) {
value = updateFn(value);
2021-10-29 14:30:00 +08:00
functionCall(set, map, key, value);
}
2021-10-29 14:30:00 +08:00
} else if (isCallable(insertFn)) {
value = insertFn();
2021-10-29 14:30:00 +08:00
functionCall(set, map, key, value);
} return value;
};
// TODO: remove from `core-js@4`
// `Map.prototype.updateOrInsert` method (replaced by `Map.prototype.emplace`)
// https://github.com/thumbsupep/proposal-upsert
2021-10-29 14:30:00 +08:00
_export({ target: 'Map', proto: true, real: true, name: 'upsert', forced: isPure }, {
updateOrInsert: mapUpsert
});
// TODO: remove from `core-js@4`
// `Map.prototype.upsert` method (replaced by `Map.prototype.emplace`)
// https://github.com/thumbsupep/proposal-upsert
_export({ target: 'Map', proto: true, real: true, forced: isPure }, {
upsert: mapUpsert
});
var min = Math.min;
var max = Math.max;
// `Math.clamp` method
// https://rwaldron.github.io/proposal-math-extensions/
_export({ target: 'Math', stat: true }, {
clamp: function clamp(x, lower, upper) {
return min(upper, max(lower, x));
}
});
// `Math.DEG_PER_RAD` constant
// https://rwaldron.github.io/proposal-math-extensions/
_export({ target: 'Math', stat: true }, {
DEG_PER_RAD: Math.PI / 180
});
var RAD_PER_DEG = 180 / Math.PI;
// `Math.degrees` method
// https://rwaldron.github.io/proposal-math-extensions/
_export({ target: 'Math', stat: true }, {
degrees: function degrees(radians) {
return radians * RAD_PER_DEG;
}
});
// `Math.scale` method implementation
// https://rwaldron.github.io/proposal-math-extensions/
var mathScale = Math.scale || function scale(x, inLow, inHigh, outLow, outHigh) {
2021-10-29 14:30:00 +08:00
var nx = +x;
var nInLow = +inLow;
var nInHigh = +inHigh;
var nOutLow = +outLow;
var nOutHigh = +outHigh;
// eslint-disable-next-line no-self-compare -- NaN check
if (nx != nx || nInLow != nInLow || nInHigh != nInHigh || nOutLow != nOutLow || nOutHigh != nOutHigh) { return NaN; }
if (nx === Infinity || nx === -Infinity) { return nx; }
return (nx - nInLow) * (nOutHigh - nOutLow) / (nInHigh - nInLow) + nOutLow;
};
// `Math.fscale` method
// https://rwaldron.github.io/proposal-math-extensions/
_export({ target: 'Math', stat: true }, {
fscale: function fscale(x, inLow, inHigh, outLow, outHigh) {
return mathFround(mathScale(x, inLow, inHigh, outLow, outHigh));
}
});
// `Math.iaddh` method
// https://gist.github.com/BrendanEich/4294d5c212a6d2254703
// TODO: Remove from `core-js@4`
_export({ target: 'Math', stat: true }, {
iaddh: function iaddh(x0, x1, y0, y1) {
var $x0 = x0 >>> 0;
var $x1 = x1 >>> 0;
var $y0 = y0 >>> 0;
return $x1 + (y1 >>> 0) + (($x0 & $y0 | ($x0 | $y0) & ~($x0 + $y0 >>> 0)) >>> 31) | 0;
}
});
// `Math.imulh` method
// https://gist.github.com/BrendanEich/4294d5c212a6d2254703
// TODO: Remove from `core-js@4`
_export({ target: 'Math', stat: true }, {
imulh: function imulh(u, v) {
var UINT16 = 0xFFFF;
var $u = +u;
var $v = +v;
var u0 = $u & UINT16;
var v0 = $v & UINT16;
var u1 = $u >> 16;
var v1 = $v >> 16;
var t = (u1 * v0 >>> 0) + (u0 * v0 >>> 16);
return u1 * v1 + (t >> 16) + ((u0 * v1 >>> 0) + (t & UINT16) >> 16);
}
});
// `Math.isubh` method
// https://gist.github.com/BrendanEich/4294d5c212a6d2254703
// TODO: Remove from `core-js@4`
_export({ target: 'Math', stat: true }, {
isubh: function isubh(x0, x1, y0, y1) {
var $x0 = x0 >>> 0;
var $x1 = x1 >>> 0;
var $y0 = y0 >>> 0;
return $x1 - (y1 >>> 0) - ((~$x0 & $y0 | ~($x0 ^ $y0) & $x0 - $y0 >>> 0) >>> 31) | 0;
}
});
// `Math.RAD_PER_DEG` constant
// https://rwaldron.github.io/proposal-math-extensions/
_export({ target: 'Math', stat: true }, {
RAD_PER_DEG: 180 / Math.PI
});
var DEG_PER_RAD = Math.PI / 180;
// `Math.radians` method
// https://rwaldron.github.io/proposal-math-extensions/
_export({ target: 'Math', stat: true }, {
radians: function radians(degrees) {
return degrees * DEG_PER_RAD;
}
});
// `Math.scale` method
// https://rwaldron.github.io/proposal-math-extensions/
_export({ target: 'Math', stat: true }, {
scale: mathScale
});
var SEEDED_RANDOM = 'Seeded Random';
var SEEDED_RANDOM_GENERATOR = SEEDED_RANDOM + ' Generator';
2021-10-29 14:30:00 +08:00
var SEED_TYPE_ERROR = 'Math.seededPRNG() argument should have a "seed" field with a finite value.';
var setInternalState$5 = internalState.set;
var getInternalState$3 = internalState.getterFor(SEEDED_RANDOM_GENERATOR);
2021-10-29 14:30:00 +08:00
var TypeError$5 = global_1.TypeError;
var $SeededRandomGenerator = createIteratorConstructor(function SeededRandomGenerator(seed) {
setInternalState$5(this, {
type: SEEDED_RANDOM_GENERATOR,
seed: seed % 2147483647
});
}, SEEDED_RANDOM, function next() {
var state = getInternalState$3(this);
var seed = state.seed = (state.seed * 1103515245 + 12345) % 2147483647;
return { value: (seed & 1073741823) / 1073741823, done: false };
});
// `Math.seededPRNG` method
// https://github.com/tc39/proposal-seeded-random
// based on https://github.com/tc39/proposal-seeded-random/blob/78b8258835b57fc2100d076151ab506bc3202ae6/demo.html
_export({ target: 'Math', stat: true, forced: true }, {
seededPRNG: function seededPRNG(it) {
var seed = anObject(it).seed;
2021-10-29 14:30:00 +08:00
if (!numberIsFinite(seed)) { throw TypeError$5(SEED_TYPE_ERROR); }
return new $SeededRandomGenerator(seed);
2021-09-01 10:47:40 +08:00
}
});
2020-01-17 14:55:39 +08:00
// `Math.signbit` method
// https://github.com/tc39/proposal-Math.signbit
_export({ target: 'Math', stat: true }, {
signbit: function signbit(x) {
return (x = +x) == x && x == 0 ? 1 / x == -Infinity : x < 0;
}
});
// `Math.umulh` method
// https://gist.github.com/BrendanEich/4294d5c212a6d2254703
// TODO: Remove from `core-js@4`
_export({ target: 'Math', stat: true }, {
umulh: function umulh(u, v) {
var UINT16 = 0xFFFF;
var $u = +u;
var $v = +v;
var u0 = $u & UINT16;
var v0 = $v & UINT16;
var u1 = $u >>> 16;
var v1 = $v >>> 16;
var t = (u1 * v0 >>> 0) + (u0 * v0 >>> 16);
return u1 * v1 + (t >>> 16) + ((u0 * v1 >>> 0) + (t & UINT16) >>> 16);
}
});
2020-01-17 14:55:39 +08:00
var INVALID_NUMBER_REPRESENTATION = 'Invalid number representation';
var INVALID_RADIX = 'Invalid radix';
2021-10-29 14:30:00 +08:00
var RangeError$1 = global_1.RangeError;
var SyntaxError = global_1.SyntaxError;
var TypeError$4 = global_1.TypeError;
2020-01-17 14:55:39 +08:00
var valid = /^[\da-z]+$/;
2021-10-29 14:30:00 +08:00
var charAt$4 = functionUncurryThis(''.charAt);
var exec$2 = functionUncurryThis(valid.exec);
var numberToString$1 = functionUncurryThis(1.0.toString);
var stringSlice$2 = functionUncurryThis(''.slice);
2020-01-17 14:55:39 +08:00
// `Number.fromString` method
// https://github.com/tc39/proposal-number-fromstring
_export({ target: 'Number', stat: true }, {
fromString: function fromString(string, radix) {
var sign = 1;
var R, mathNum;
2021-10-29 14:30:00 +08:00
if (typeof string != 'string') { throw TypeError$4(INVALID_NUMBER_REPRESENTATION); }
2020-01-17 14:55:39 +08:00
if (!string.length) { throw SyntaxError(INVALID_NUMBER_REPRESENTATION); }
2021-10-29 14:30:00 +08:00
if (charAt$4(string, 0) == '-') {
2020-01-17 14:55:39 +08:00
sign = -1;
2021-10-29 14:30:00 +08:00
string = stringSlice$2(string, 1);
2020-01-17 14:55:39 +08:00
if (!string.length) { throw SyntaxError(INVALID_NUMBER_REPRESENTATION); }
}
2021-10-29 14:30:00 +08:00
R = radix === undefined ? 10 : toIntegerOrInfinity(radix);
if (R < 2 || R > 36) { throw RangeError$1(INVALID_RADIX); }
if (!exec$2(valid, string) || numberToString$1(mathNum = numberParseInt(string, R), R) !== string) {
2020-01-17 14:55:39 +08:00
throw SyntaxError(INVALID_NUMBER_REPRESENTATION);
}
return sign * mathNum;
}
});
// `Number.range` method
// https://github.com/tc39/proposal-Number.range
_export({ target: 'Number', stat: true }, {
range: function range(start, end, option) {
return new numericRangeIterator(start, end, option, 'number', 0, 1);
}
});
2021-02-19 17:33:10 +08:00
var OBJECT_ITERATOR = 'Object Iterator';
var setInternalState$4 = internalState.set;
var getInternalState$2 = internalState.getterFor(OBJECT_ITERATOR);
2020-01-17 14:55:39 +08:00
var objectIterator = createIteratorConstructor(function ObjectIterator(source, mode) {
var object = toObject(source);
setInternalState$4(this, {
2020-01-17 14:55:39 +08:00
type: OBJECT_ITERATOR,
mode: mode,
object: object,
keys: objectKeys(object),
index: 0
});
}, 'Object', function next() {
var state = getInternalState$2(this);
2020-01-17 14:55:39 +08:00
var keys = state.keys;
while (true) {
if (keys === null || state.index >= keys.length) {
state.object = state.keys = null;
return { value: undefined, done: true };
}
var key = keys[state.index++];
var object = state.object;
2021-10-29 14:30:00 +08:00
if (!hasOwnProperty_1(object, key)) { continue; }
2020-01-17 14:55:39 +08:00
switch (state.mode) {
case 'keys': return { value: key, done: false };
case 'values': return { value: object[key], done: false };
} /* entries */ return { value: [key, object[key]], done: false };
}
});
// `Object.iterateEntries` method
// https://github.com/tc39/proposal-object-iteration
_export({ target: 'Object', stat: true }, {
iterateEntries: function iterateEntries(object) {
return new objectIterator(object, 'entries');
}
});
// `Object.iterateKeys` method
// https://github.com/tc39/proposal-object-iteration
_export({ target: 'Object', stat: true }, {
iterateKeys: function iterateKeys(object) {
return new objectIterator(object, 'keys');
}
});
// `Object.iterateValues` method
// https://github.com/tc39/proposal-object-iteration
_export({ target: 'Object', stat: true }, {
iterateValues: function iterateValues(object) {
return new objectIterator(object, 'values');
}
});
// https://github.com/tc39/proposal-observable
2021-10-29 14:30:00 +08:00
2021-03-02 10:28:33 +08:00
var defineProperty = objectDefineProperty.f;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
2020-01-17 14:55:39 +08:00
var OBSERVABLE = wellKnownSymbol('observable');
var getInternalState$1 = internalState.get;
var setInternalState$3 = internalState.set;
2021-10-29 14:30:00 +08:00
var Array$1 = global_1.Array;
2020-01-17 14:55:39 +08:00
var cleanupSubscription = function (subscriptionState) {
var cleanup = subscriptionState.cleanup;
if (cleanup) {
subscriptionState.cleanup = undefined;
try {
cleanup();
} catch (error) {
hostReportErrors(error);
}
}
};
var subscriptionClosed = function (subscriptionState) {
return subscriptionState.observer === undefined;
};
var close = function (subscriptionState) {
var subscription = subscriptionState.facade;
2020-01-17 14:55:39 +08:00
if (!descriptors) {
subscription.closed = true;
var subscriptionObserver = subscriptionState.subscriptionObserver;
if (subscriptionObserver) { subscriptionObserver.closed = true; }
} subscriptionState.observer = undefined;
};
var Subscription = function (observer, subscriber) {
var subscriptionState = setInternalState$3(this, {
2020-01-17 14:55:39 +08:00
cleanup: undefined,
observer: anObject(observer),
subscriptionObserver: undefined
});
var start;
if (!descriptors) { this.closed = false; }
try {
2021-10-29 14:30:00 +08:00
if (start = getMethod(observer, 'start')) { functionCall(start, observer, this); }
2020-01-17 14:55:39 +08:00
} catch (error) {
hostReportErrors(error);
}
if (subscriptionClosed(subscriptionState)) { return; }
var subscriptionObserver = subscriptionState.subscriptionObserver = new SubscriptionObserver(this);
try {
var cleanup = subscriber(subscriptionObserver);
var subscription = cleanup;
2021-10-29 14:30:00 +08:00
if (cleanup != null) { subscriptionState.cleanup = isCallable(cleanup.unsubscribe)
2020-01-17 14:55:39 +08:00
? function () { subscription.unsubscribe(); }
2021-10-29 14:30:00 +08:00
: aCallable(cleanup); }
} catch (error$1) {
subscriptionObserver.error(error$1);
2020-01-17 14:55:39 +08:00
return;
} if (subscriptionClosed(subscriptionState)) { cleanupSubscription(subscriptionState); }
};
Subscription.prototype = redefineAll({}, {
unsubscribe: function unsubscribe() {
var subscriptionState = getInternalState$1(this);
2020-01-17 14:55:39 +08:00
if (!subscriptionClosed(subscriptionState)) {
close(subscriptionState);
2020-01-17 14:55:39 +08:00
cleanupSubscription(subscriptionState);
}
}
});
2021-03-02 10:28:33 +08:00
if (descriptors) { defineProperty(Subscription.prototype, 'closed', {
2020-01-17 14:55:39 +08:00
configurable: true,
get: function () {
return subscriptionClosed(getInternalState$1(this));
2020-01-17 14:55:39 +08:00
}
}); }
var SubscriptionObserver = function (subscription) {
setInternalState$3(this, { subscription: subscription });
2020-01-17 14:55:39 +08:00
if (!descriptors) { this.closed = false; }
};
SubscriptionObserver.prototype = redefineAll({}, {
next: function next(value) {
var subscriptionState = getInternalState$1(getInternalState$1(this).subscription);
2020-01-17 14:55:39 +08:00
if (!subscriptionClosed(subscriptionState)) {
var observer = subscriptionState.observer;
try {
2021-10-29 14:30:00 +08:00
var nextMethod = getMethod(observer, 'next');
if (nextMethod) { functionCall(nextMethod, observer, value); }
2020-01-17 14:55:39 +08:00
} catch (error) {
hostReportErrors(error);
}
}
},
error: function error(value) {
var subscriptionState = getInternalState$1(getInternalState$1(this).subscription);
2020-01-17 14:55:39 +08:00
if (!subscriptionClosed(subscriptionState)) {
var observer = subscriptionState.observer;
close(subscriptionState);
2020-01-17 14:55:39 +08:00
try {
2021-10-29 14:30:00 +08:00
var errorMethod = getMethod(observer, 'error');
if (errorMethod) { functionCall(errorMethod, observer, value); }
2020-01-17 14:55:39 +08:00
else { hostReportErrors(value); }
} catch (err) {
hostReportErrors(err);
} cleanupSubscription(subscriptionState);
}
},
complete: function complete() {
var subscriptionState = getInternalState$1(getInternalState$1(this).subscription);
2020-01-17 14:55:39 +08:00
if (!subscriptionClosed(subscriptionState)) {
var observer = subscriptionState.observer;
close(subscriptionState);
2020-01-17 14:55:39 +08:00
try {
2021-10-29 14:30:00 +08:00
var completeMethod = getMethod(observer, 'complete');
if (completeMethod) { functionCall(completeMethod, observer); }
2020-01-17 14:55:39 +08:00
} catch (error) {
hostReportErrors(error);
} cleanupSubscription(subscriptionState);
}
}
});
2021-03-02 10:28:33 +08:00
if (descriptors) { defineProperty(SubscriptionObserver.prototype, 'closed', {
2020-01-17 14:55:39 +08:00
configurable: true,
get: function () {
return subscriptionClosed(getInternalState$1(getInternalState$1(this).subscription));
2020-01-17 14:55:39 +08:00
}
}); }
var $Observable = function Observable(subscriber) {
2021-10-29 14:30:00 +08:00
anInstance(this, ObservablePrototype);
setInternalState$3(this, { subscriber: aCallable(subscriber) });
2020-01-17 14:55:39 +08:00
};
2021-10-29 14:30:00 +08:00
var ObservablePrototype = $Observable.prototype;
redefineAll(ObservablePrototype, {
2020-01-17 14:55:39 +08:00
subscribe: function subscribe(observer) {
var length = arguments.length;
2021-10-29 14:30:00 +08:00
return new Subscription(isCallable(observer) ? {
2020-01-17 14:55:39 +08:00
next: observer,
error: length > 1 ? arguments[1] : undefined,
complete: length > 2 ? arguments[2] : undefined
} : isObject(observer) ? observer : {}, getInternalState$1(this).subscriber);
2020-01-17 14:55:39 +08:00
}
});
redefineAll($Observable, {
from: function from(x) {
2021-10-29 14:30:00 +08:00
var C = isConstructor(this) ? this : $Observable;
var observableMethod = getMethod(anObject(x), OBSERVABLE);
2020-01-17 14:55:39 +08:00
if (observableMethod) {
2021-10-29 14:30:00 +08:00
var observable = anObject(functionCall(observableMethod, x));
2020-01-17 14:55:39 +08:00
return observable.constructor === C ? observable : new C(function (observer) {
return observable.subscribe(observer);
});
}
var iterator = getIterator(x);
return new C(function (observer) {
2021-02-19 17:33:10 +08:00
iterate(iterator, function (it, stop) {
2020-01-17 14:55:39 +08:00
observer.next(it);
2021-02-19 17:33:10 +08:00
if (observer.closed) { return stop(); }
}, { IS_ITERATOR: true, INTERRUPTED: true });
2020-01-17 14:55:39 +08:00
observer.complete();
});
},
of: function of() {
var arguments$1 = arguments;
2021-10-29 14:30:00 +08:00
var C = isConstructor(this) ? this : $Observable;
2020-01-17 14:55:39 +08:00
var length = arguments.length;
2021-10-29 14:30:00 +08:00
var items = Array$1(length);
2020-01-17 14:55:39 +08:00
var index = 0;
while (index < length) { items[index] = arguments$1[index++]; }
return new C(function (observer) {
for (var i = 0; i < length; i++) {
observer.next(items[i]);
if (observer.closed) { return; }
} observer.complete();
});
}
});
2021-10-29 14:30:00 +08:00
redefine(ObservablePrototype, OBSERVABLE, function () { return this; });
2020-01-17 14:55:39 +08:00
_export({ global: true }, {
Observable: $Observable
});
setSpecies('Observable');
// `Promise.try` method
// https://github.com/tc39/proposal-promise-try
_export({ target: 'Promise', stat: true }, {
'try': function (callbackfn) {
2021-03-02 10:28:33 +08:00
var promiseCapability = newPromiseCapability$1.f(this);
2020-01-17 14:55:39 +08:00
var result = perform(callbackfn);
(result.error ? promiseCapability.reject : promiseCapability.resolve)(result.value);
return promiseCapability.promise;
}
});
// TODO: in core-js@4, move /modules/ dependencies to public entries for better optimization by tools like `preset-env`
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var Map$1 = getBuiltIn('Map');
var WeakMap$1 = getBuiltIn('WeakMap');
var push$4 = functionUncurryThis([].push);
var metadata = shared('metadata');
2021-10-29 14:30:00 +08:00
var store$1 = metadata.store || (metadata.store = new WeakMap$1());
2021-05-12 15:34:21 +08:00
var getOrCreateMetadataMap$1 = function (target, targetKey, create) {
var targetMetadata = store$1.get(target);
if (!targetMetadata) {
if (!create) { return; }
2021-10-29 14:30:00 +08:00
store$1.set(target, targetMetadata = new Map$1());
2021-09-22 10:28:02 +08:00
}
var keyMetadata = targetMetadata.get(targetKey);
if (!keyMetadata) {
if (!create) { return; }
2021-10-29 14:30:00 +08:00
targetMetadata.set(targetKey, keyMetadata = new Map$1());
} return keyMetadata;
2021-05-12 15:34:21 +08:00
};
2020-01-17 14:55:39 +08:00
var ordinaryHasOwnMetadata$3 = function (MetadataKey, O, P) {
var metadataMap = getOrCreateMetadataMap$1(O, P, false);
return metadataMap === undefined ? false : metadataMap.has(MetadataKey);
};
2020-01-17 14:55:39 +08:00
var ordinaryGetOwnMetadata$2 = function (MetadataKey, O, P) {
var metadataMap = getOrCreateMetadataMap$1(O, P, false);
return metadataMap === undefined ? undefined : metadataMap.get(MetadataKey);
};
2020-01-17 14:55:39 +08:00
var ordinaryDefineOwnMetadata$2 = function (MetadataKey, MetadataValue, O, P) {
getOrCreateMetadataMap$1(O, P, true).set(MetadataKey, MetadataValue);
};
2020-01-17 14:55:39 +08:00
var ordinaryOwnMetadataKeys$2 = function (target, targetKey) {
var metadataMap = getOrCreateMetadataMap$1(target, targetKey, false);
var keys = [];
2021-10-29 14:30:00 +08:00
if (metadataMap) { metadataMap.forEach(function (_, key) { push$4(keys, key); }); }
return keys;
};
2021-09-01 10:47:40 +08:00
var toMetadataKey$9 = function (it) {
return it === undefined || typeof it == 'symbol' ? it : String(it);
};
2020-01-17 14:55:39 +08:00
var reflectMetadata = {
store: store$1,
getMap: getOrCreateMetadataMap$1,
has: ordinaryHasOwnMetadata$3,
get: ordinaryGetOwnMetadata$2,
set: ordinaryDefineOwnMetadata$2,
keys: ordinaryOwnMetadataKeys$2,
toKey: toMetadataKey$9
};
2020-01-17 14:55:39 +08:00
var toMetadataKey$8 = reflectMetadata.toKey;
var ordinaryDefineOwnMetadata$1 = reflectMetadata.set;
2020-01-17 14:55:39 +08:00
// `Reflect.defineMetadata` method
// https://github.com/rbuckton/reflect-metadata
_export({ target: 'Reflect', stat: true }, {
defineMetadata: function defineMetadata(metadataKey, metadataValue, target /* , targetKey */) {
var targetKey = arguments.length < 4 ? undefined : toMetadataKey$8(arguments[3]);
ordinaryDefineOwnMetadata$1(metadataKey, metadataValue, anObject(target), targetKey);
}
});
2020-01-17 14:55:39 +08:00
var toMetadataKey$7 = reflectMetadata.toKey;
var getOrCreateMetadataMap = reflectMetadata.getMap;
var store = reflectMetadata.store;
2021-09-01 10:47:40 +08:00
// `Reflect.deleteMetadata` method
// https://github.com/rbuckton/reflect-metadata
_export({ target: 'Reflect', stat: true }, {
deleteMetadata: function deleteMetadata(metadataKey, target /* , targetKey */) {
var targetKey = arguments.length < 3 ? undefined : toMetadataKey$7(arguments[2]);
var metadataMap = getOrCreateMetadataMap(anObject(target), targetKey, false);
if (metadataMap === undefined || !metadataMap['delete'](metadataKey)) { return false; }
if (metadataMap.size) { return true; }
var targetMetadata = store.get(target);
targetMetadata['delete'](targetKey);
return !!targetMetadata.size || store['delete'](target);
}
});
2021-09-01 10:47:40 +08:00
var ordinaryHasOwnMetadata$2 = reflectMetadata.has;
var ordinaryGetOwnMetadata$1 = reflectMetadata.get;
var toMetadataKey$6 = reflectMetadata.toKey;
var ordinaryGetMetadata = function (MetadataKey, O, P) {
var hasOwn = ordinaryHasOwnMetadata$2(MetadataKey, O, P);
if (hasOwn) { return ordinaryGetOwnMetadata$1(MetadataKey, O, P); }
var parent = objectGetPrototypeOf(O);
return parent !== null ? ordinaryGetMetadata(MetadataKey, parent, P) : undefined;
2021-09-22 10:28:02 +08:00
};
2020-01-17 14:55:39 +08:00
// `Reflect.getMetadata` method
// https://github.com/rbuckton/reflect-metadata
_export({ target: 'Reflect', stat: true }, {
getMetadata: function getMetadata(metadataKey, target /* , targetKey */) {
var targetKey = arguments.length < 3 ? undefined : toMetadataKey$6(arguments[2]);
return ordinaryGetMetadata(metadataKey, anObject(target), targetKey);
}
});
2021-05-12 15:34:21 +08:00
2021-10-29 14:30:00 +08:00
var arrayUniqueBy$1 = functionUncurryThis(arrayUniqueBy$2);
var concat = functionUncurryThis([].concat);
var ordinaryOwnMetadataKeys$1 = reflectMetadata.keys;
var toMetadataKey$5 = reflectMetadata.toKey;
2021-09-01 10:47:40 +08:00
var ordinaryMetadataKeys = function (O, P) {
var oKeys = ordinaryOwnMetadataKeys$1(O, P);
var parent = objectGetPrototypeOf(O);
if (parent === null) { return oKeys; }
var pKeys = ordinaryMetadataKeys(parent, P);
2021-10-29 14:30:00 +08:00
return pKeys.length ? oKeys.length ? arrayUniqueBy$1(concat(oKeys, pKeys)) : pKeys : oKeys;
};
// `Reflect.getMetadataKeys` method
// https://github.com/rbuckton/reflect-metadata
_export({ target: 'Reflect', stat: true }, {
getMetadataKeys: function getMetadataKeys(target /* , targetKey */) {
var targetKey = arguments.length < 2 ? undefined : toMetadataKey$5(arguments[1]);
return ordinaryMetadataKeys(anObject(target), targetKey);
2021-05-12 15:34:21 +08:00
}
});
2020-01-17 14:55:39 +08:00
var ordinaryGetOwnMetadata = reflectMetadata.get;
var toMetadataKey$4 = reflectMetadata.toKey;
2020-01-17 14:55:39 +08:00
// `Reflect.getOwnMetadata` method
// https://github.com/rbuckton/reflect-metadata
_export({ target: 'Reflect', stat: true }, {
getOwnMetadata: function getOwnMetadata(metadataKey, target /* , targetKey */) {
var targetKey = arguments.length < 3 ? undefined : toMetadataKey$4(arguments[2]);
return ordinaryGetOwnMetadata(metadataKey, anObject(target), targetKey);
}
});
2021-09-01 10:47:40 +08:00
var ordinaryOwnMetadataKeys = reflectMetadata.keys;
var toMetadataKey$3 = reflectMetadata.toKey;
2021-09-01 10:47:40 +08:00
// `Reflect.getOwnMetadataKeys` method
// https://github.com/rbuckton/reflect-metadata
_export({ target: 'Reflect', stat: true }, {
getOwnMetadataKeys: function getOwnMetadataKeys(target /* , targetKey */) {
var targetKey = arguments.length < 2 ? undefined : toMetadataKey$3(arguments[1]);
return ordinaryOwnMetadataKeys(anObject(target), targetKey);
}
});
var ordinaryHasOwnMetadata$1 = reflectMetadata.has;
var toMetadataKey$2 = reflectMetadata.toKey;
var ordinaryHasMetadata = function (MetadataKey, O, P) {
var hasOwn = ordinaryHasOwnMetadata$1(MetadataKey, O, P);
if (hasOwn) { return true; }
var parent = objectGetPrototypeOf(O);
return parent !== null ? ordinaryHasMetadata(MetadataKey, parent, P) : false;
};
2020-01-17 14:55:39 +08:00
// `Reflect.hasMetadata` method
// https://github.com/rbuckton/reflect-metadata
_export({ target: 'Reflect', stat: true }, {
hasMetadata: function hasMetadata(metadataKey, target /* , targetKey */) {
var targetKey = arguments.length < 3 ? undefined : toMetadataKey$2(arguments[2]);
return ordinaryHasMetadata(metadataKey, anObject(target), targetKey);
2020-01-17 14:55:39 +08:00
}
});
var ordinaryHasOwnMetadata = reflectMetadata.has;
var toMetadataKey$1 = reflectMetadata.toKey;
2020-01-17 14:55:39 +08:00
// `Reflect.hasOwnMetadata` method
// https://github.com/rbuckton/reflect-metadata
_export({ target: 'Reflect', stat: true }, {
hasOwnMetadata: function hasOwnMetadata(metadataKey, target /* , targetKey */) {
var targetKey = arguments.length < 3 ? undefined : toMetadataKey$1(arguments[2]);
return ordinaryHasOwnMetadata(metadataKey, anObject(target), targetKey);
}
});
2020-01-17 14:55:39 +08:00
var toMetadataKey = reflectMetadata.toKey;
var ordinaryDefineOwnMetadata = reflectMetadata.set;
// `Reflect.metadata` method
// https://github.com/rbuckton/reflect-metadata
_export({ target: 'Reflect', stat: true }, {
metadata: function metadata(metadataKey, metadataValue) {
return function decorator(target, key) {
ordinaryDefineOwnMetadata(metadataKey, metadataValue, anObject(target), toMetadataKey(key));
};
}
});
// https://github.com/tc39/collection-methods
2021-10-29 14:30:00 +08:00
var collectionAddAll = function addAll(/* ...elements */) {
var arguments$1 = arguments;
var set = anObject(this);
2021-10-29 14:30:00 +08:00
var adder = aCallable(set.add);
for (var k = 0, len = arguments.length; k < len; k++) {
2021-10-29 14:30:00 +08:00
functionCall(adder, set, arguments$1[k]);
}
return set;
};
// `Set.prototype.addAll` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Set', proto: true, real: true, forced: isPure }, {
2021-10-29 14:30:00 +08:00
addAll: collectionAddAll
});
// `Set.prototype.deleteAll` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Set', proto: true, real: true, forced: isPure }, {
2021-10-29 14:30:00 +08:00
deleteAll: collectionDeleteAll
2021-09-22 10:28:02 +08:00
});
2020-01-17 14:55:39 +08:00
// `Set.prototype.difference` method
// https://github.com/tc39/proposal-set-methods
_export({ target: 'Set', proto: true, real: true, forced: isPure }, {
difference: function difference(iterable) {
var set = anObject(this);
var newSet = new (speciesConstructor(set, getBuiltIn('Set')))(set);
2021-10-29 14:30:00 +08:00
var remover = aCallable(newSet['delete']);
iterate(iterable, function (value) {
2021-10-29 14:30:00 +08:00
functionCall(remover, newSet, value);
});
return newSet;
2021-09-22 10:28:02 +08:00
}
});
2020-01-17 14:55:39 +08:00
var getSetIterator = function (it) {
// eslint-disable-next-line es/no-set -- safe
2021-10-29 14:30:00 +08:00
return functionCall(Set.prototype.values, it);
};
2021-05-12 15:34:21 +08:00
// `Set.prototype.every` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Set', proto: true, real: true, forced: isPure }, {
every: function every(callbackfn /* , thisArg */) {
var set = anObject(this);
var iterator = getSetIterator(set);
2021-10-29 14:30:00 +08:00
var boundFunction = functionBindContext(callbackfn, arguments.length > 1 ? arguments[1] : undefined);
return !iterate(iterator, function (value, stop) {
if (!boundFunction(value, value, set)) { return stop(); }
}, { IS_ITERATOR: true, INTERRUPTED: true }).stopped;
2021-09-22 10:28:02 +08:00
}
});
2020-01-17 14:55:39 +08:00
// `Set.prototype.filter` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Set', proto: true, real: true, forced: isPure }, {
filter: function filter(callbackfn /* , thisArg */) {
var set = anObject(this);
var iterator = getSetIterator(set);
2021-10-29 14:30:00 +08:00
var boundFunction = functionBindContext(callbackfn, arguments.length > 1 ? arguments[1] : undefined);
var newSet = new (speciesConstructor(set, getBuiltIn('Set')))();
2021-10-29 14:30:00 +08:00
var adder = aCallable(newSet.add);
iterate(iterator, function (value) {
2021-10-29 14:30:00 +08:00
if (boundFunction(value, value, set)) { functionCall(adder, newSet, value); }
}, { IS_ITERATOR: true });
return newSet;
}
});
// `Set.prototype.find` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Set', proto: true, real: true, forced: isPure }, {
find: function find(callbackfn /* , thisArg */) {
var set = anObject(this);
var iterator = getSetIterator(set);
2021-10-29 14:30:00 +08:00
var boundFunction = functionBindContext(callbackfn, arguments.length > 1 ? arguments[1] : undefined);
return iterate(iterator, function (value, stop) {
if (boundFunction(value, value, set)) { return stop(value); }
}, { IS_ITERATOR: true, INTERRUPTED: true }).result;
}
});
// `Set.from` method
// https://tc39.github.io/proposal-setmap-offrom/#sec-set.from
_export({ target: 'Set', stat: true }, {
from: collectionFrom
2021-09-22 10:28:02 +08:00
});
2020-01-17 14:55:39 +08:00
// `Set.prototype.intersection` method
// https://github.com/tc39/proposal-set-methods
_export({ target: 'Set', proto: true, real: true, forced: isPure }, {
intersection: function intersection(iterable) {
var set = anObject(this);
var newSet = new (speciesConstructor(set, getBuiltIn('Set')))();
2021-10-29 14:30:00 +08:00
var hasCheck = aCallable(set.has);
var adder = aCallable(newSet.add);
iterate(iterable, function (value) {
2021-10-29 14:30:00 +08:00
if (functionCall(hasCheck, set, value)) { functionCall(adder, newSet, value); }
});
return newSet;
2021-09-22 10:28:02 +08:00
}
});
2020-01-17 14:55:39 +08:00
// `Set.prototype.isDisjointFrom` method
// https://tc39.github.io/proposal-set-methods/#Set.prototype.isDisjointFrom
_export({ target: 'Set', proto: true, real: true, forced: isPure }, {
isDisjointFrom: function isDisjointFrom(iterable) {
var set = anObject(this);
2021-10-29 14:30:00 +08:00
var hasCheck = aCallable(set.has);
return !iterate(iterable, function (value, stop) {
2021-10-29 14:30:00 +08:00
if (functionCall(hasCheck, set, value) === true) { return stop(); }
}, { INTERRUPTED: true }).stopped;
}
});
2021-05-12 15:34:21 +08:00
// `Set.prototype.isSubsetOf` method
// https://tc39.github.io/proposal-set-methods/#Set.prototype.isSubsetOf
_export({ target: 'Set', proto: true, real: true, forced: isPure }, {
isSubsetOf: function isSubsetOf(iterable) {
var iterator = getIterator(this);
var otherSet = anObject(iterable);
var hasCheck = otherSet.has;
2021-10-29 14:30:00 +08:00
if (!isCallable(hasCheck)) {
otherSet = new (getBuiltIn('Set'))(iterable);
2021-10-29 14:30:00 +08:00
hasCheck = aCallable(otherSet.has);
}
return !iterate(iterator, function (value, stop) {
2021-10-29 14:30:00 +08:00
if (functionCall(hasCheck, otherSet, value) === false) { return stop(); }
}, { IS_ITERATOR: true, INTERRUPTED: true }).stopped;
}
});
2021-05-12 15:34:21 +08:00
// `Set.prototype.isSupersetOf` method
// https://tc39.github.io/proposal-set-methods/#Set.prototype.isSupersetOf
_export({ target: 'Set', proto: true, real: true, forced: isPure }, {
isSupersetOf: function isSupersetOf(iterable) {
var set = anObject(this);
2021-10-29 14:30:00 +08:00
var hasCheck = aCallable(set.has);
return !iterate(iterable, function (value, stop) {
2021-10-29 14:30:00 +08:00
if (functionCall(hasCheck, set, value) === false) { return stop(); }
}, { INTERRUPTED: true }).stopped;
}
});
2021-05-12 15:34:21 +08:00
2021-10-29 14:30:00 +08:00
var arrayJoin = functionUncurryThis([].join);
var push$3 = [].push;
// `Set.prototype.join` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Set', proto: true, real: true, forced: isPure }, {
join: function join(separator) {
var set = anObject(this);
var iterator = getSetIterator(set);
2021-10-29 14:30:00 +08:00
var sep = separator === undefined ? ',' : toString_1(separator);
var result = [];
2021-10-29 14:30:00 +08:00
iterate(iterator, push$3, { that: result, IS_ITERATOR: true });
return arrayJoin(result, sep);
}
});
2020-01-17 14:55:39 +08:00
// `Set.prototype.map` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Set', proto: true, real: true, forced: isPure }, {
map: function map(callbackfn /* , thisArg */) {
var set = anObject(this);
var iterator = getSetIterator(set);
2021-10-29 14:30:00 +08:00
var boundFunction = functionBindContext(callbackfn, arguments.length > 1 ? arguments[1] : undefined);
var newSet = new (speciesConstructor(set, getBuiltIn('Set')))();
2021-10-29 14:30:00 +08:00
var adder = aCallable(newSet.add);
iterate(iterator, function (value) {
2021-10-29 14:30:00 +08:00
functionCall(adder, newSet, boundFunction(value, value, set));
}, { IS_ITERATOR: true });
return newSet;
}
});
2020-01-17 14:55:39 +08:00
// `Set.of` method
// https://tc39.github.io/proposal-setmap-offrom/#sec-set.of
_export({ target: 'Set', stat: true }, {
of: collectionOf
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var TypeError$3 = global_1.TypeError;
// `Set.prototype.reduce` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Set', proto: true, real: true, forced: isPure }, {
reduce: function reduce(callbackfn /* , initialValue */) {
var set = anObject(this);
var iterator = getSetIterator(set);
var noInitial = arguments.length < 2;
var accumulator = noInitial ? undefined : arguments[1];
2021-10-29 14:30:00 +08:00
aCallable(callbackfn);
iterate(iterator, function (value) {
if (noInitial) {
noInitial = false;
accumulator = value;
} else {
accumulator = callbackfn(accumulator, value, value, set);
}
}, { IS_ITERATOR: true });
2021-10-29 14:30:00 +08:00
if (noInitial) { throw TypeError$3('Reduce of empty set with no initial value'); }
return accumulator;
}
});
2020-01-17 14:55:39 +08:00
// `Set.prototype.some` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'Set', proto: true, real: true, forced: isPure }, {
some: function some(callbackfn /* , thisArg */) {
var set = anObject(this);
var iterator = getSetIterator(set);
2021-10-29 14:30:00 +08:00
var boundFunction = functionBindContext(callbackfn, arguments.length > 1 ? arguments[1] : undefined);
return iterate(iterator, function (value, stop) {
if (boundFunction(value, value, set)) { return stop(); }
}, { IS_ITERATOR: true, INTERRUPTED: true }).stopped;
}
2021-09-22 10:28:02 +08:00
});
2020-01-17 14:55:39 +08:00
// `Set.prototype.symmetricDifference` method
// https://github.com/tc39/proposal-set-methods
_export({ target: 'Set', proto: true, real: true, forced: isPure }, {
symmetricDifference: function symmetricDifference(iterable) {
var set = anObject(this);
var newSet = new (speciesConstructor(set, getBuiltIn('Set')))(set);
2021-10-29 14:30:00 +08:00
var remover = aCallable(newSet['delete']);
var adder = aCallable(newSet.add);
iterate(iterable, function (value) {
2021-10-29 14:30:00 +08:00
functionCall(remover, newSet, value) || functionCall(adder, newSet, value);
});
return newSet;
}
});
2020-01-17 14:55:39 +08:00
// `Set.prototype.union` method
// https://github.com/tc39/proposal-set-methods
_export({ target: 'Set', proto: true, real: true, forced: isPure }, {
union: function union(iterable) {
var set = anObject(this);
var newSet = new (speciesConstructor(set, getBuiltIn('Set')))(set);
2021-10-29 14:30:00 +08:00
iterate(iterable, aCallable(newSet.add), { that: newSet });
return newSet;
}
});
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var charAt$3 = stringMultibyte.charAt;
2021-09-22 10:28:02 +08:00
var FORCED$1 = fails(function () {
return '𠮷'.at(0) !== '𠮷';
});
// `String.prototype.at` method
// https://github.com/mathiasbynens/String.prototype.at
_export({ target: 'String', proto: true, forced: FORCED$1 }, {
at: function at(pos) {
2021-10-29 14:30:00 +08:00
return charAt$3(this, pos);
}
2021-05-12 15:34:21 +08:00
});
var codeAt$1 = stringMultibyte.codeAt;
2021-10-29 14:30:00 +08:00
var charAt$2 = stringMultibyte.charAt;
var STRING_ITERATOR = 'String Iterator';
var setInternalState$2 = internalState.set;
var getInternalState = internalState.getterFor(STRING_ITERATOR);
// TODO: unify with String#@@iterator
var $StringIterator = createIteratorConstructor(function StringIterator(string) {
setInternalState$2(this, {
type: STRING_ITERATOR,
string: string,
index: 0
});
}, 'String', function next() {
var state = getInternalState(this);
var string = state.string;
var index = state.index;
var point;
if (index >= string.length) { return { value: undefined, done: true }; }
2021-10-29 14:30:00 +08:00
point = charAt$2(string, index);
state.index += point.length;
return { value: { codePoint: codeAt$1(point, 0), position: index }, done: false };
});
2021-09-22 10:28:02 +08:00
// `String.prototype.codePoints` method
// https://github.com/tc39/proposal-string-prototype-codepoints
_export({ target: 'String', proto: true }, {
codePoints: function codePoints() {
2021-10-29 14:30:00 +08:00
return new $StringIterator(toString_1(requireObjectCoercible(this)));
}
});
2021-09-22 10:28:02 +08:00
// `Symbol.asyncDispose` well-known symbol
// https://github.com/tc39/proposal-using-statement
defineWellKnownSymbol('asyncDispose');
2020-01-17 14:55:39 +08:00
// `Symbol.dispose` well-known symbol
// https://github.com/tc39/proposal-using-statement
defineWellKnownSymbol('dispose');
2021-05-12 15:34:21 +08:00
// `Symbol.matcher` well-known symbol
// https://github.com/tc39/proposal-pattern-matching
defineWellKnownSymbol('matcher');
2021-05-12 15:34:21 +08:00
// `Symbol.metadata` well-known symbol
// https://github.com/tc39/proposal-decorators
defineWellKnownSymbol('metadata');
2021-05-12 15:34:21 +08:00
// `Symbol.observable` well-known symbol
// https://github.com/tc39/proposal-observable
defineWellKnownSymbol('observable');
2020-01-17 14:55:39 +08:00
// TODO: remove from `core-js@4`
2020-01-17 14:55:39 +08:00
2021-09-01 10:47:40 +08:00
// `Symbol.patternMatch` well-known symbol
// https://github.com/tc39/proposal-pattern-matching
defineWellKnownSymbol('patternMatch');
2021-09-01 10:47:40 +08:00
// TODO: remove from `core-js@4`
2021-09-01 10:47:40 +08:00
2020-01-17 14:55:39 +08:00
defineWellKnownSymbol('replaceAll');
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var aTypedArrayConstructor = arrayBufferViewCore.aTypedArrayConstructor;
var exportTypedArrayStaticMethod = arrayBufferViewCore.exportTypedArrayStaticMethod;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
// `%TypedArray%.fromAsync` method
// https://github.com/tc39/proposal-array-from-async
exportTypedArrayStaticMethod('fromAsync', function fromAsync(asyncItems /* , mapfn = undefined, thisArg = undefined */) {
var C = this;
var argumentsLength = arguments.length;
var mapfn = argumentsLength > 1 ? arguments[1] : undefined;
var thisArg = argumentsLength > 2 ? arguments[2] : undefined;
return new (getBuiltIn('Promise'))(function (resolve) {
aConstructor(C);
resolve(arrayFromAsync(asyncItems, mapfn, thisArg));
}).then(function (list) {
return arrayFromConstructorAndList(aTypedArrayConstructor(C), list);
});
}, typedArrayConstructorsRequireWrappers);
2021-09-01 10:47:40 +08:00
2021-10-29 14:30:00 +08:00
// TODO: Remove from `core-js@4`
2021-09-01 10:47:40 +08:00
2021-10-29 14:30:00 +08:00
var $filterReject$1 = arrayIteration.filterReject;
2021-09-01 10:47:40 +08:00
2021-10-29 14:30:00 +08:00
var aTypedArray$5 = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$5 = arrayBufferViewCore.exportTypedArrayMethod;
// `%TypedArray%.prototype.filterOut` method
// https://github.com/tc39/proposal-array-filtering
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$5('filterOut', function filterOut(callbackfn /* , thisArg */) {
var list = $filterReject$1(aTypedArray$5(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined);
return typedArrayFromSpeciesAndList(this, list);
});
var $filterReject = arrayIteration.filterReject;
var aTypedArray$4 = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$4 = arrayBufferViewCore.exportTypedArrayMethod;
// `%TypedArray%.prototype.filterReject` method
// https://github.com/tc39/proposal-array-filtering
exportTypedArrayMethod$4('filterReject', function filterReject(callbackfn /* , thisArg */) {
var list = $filterReject(aTypedArray$4(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined);
return typedArrayFromSpeciesAndList(this, list);
2020-01-17 14:55:39 +08:00
});
var $findLast = arrayIterationFromLast.findLast;
2021-10-29 14:30:00 +08:00
var aTypedArray$3 = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$3 = arrayBufferViewCore.exportTypedArrayMethod;
// `%TypedArray%.prototype.findLast` method
// https://github.com/tc39/proposal-array-find-from-last
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$3('findLast', function findLast(predicate /* , thisArg */) {
return $findLast(aTypedArray$3(this), predicate, arguments.length > 1 ? arguments[1] : undefined);
2021-05-12 15:34:21 +08:00
});
2020-01-17 14:55:39 +08:00
var $findLastIndex = arrayIterationFromLast.findLastIndex;
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var aTypedArray$2 = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$2 = arrayBufferViewCore.exportTypedArrayMethod;
2020-01-17 14:55:39 +08:00
// `%TypedArray%.prototype.findLastIndex` method
// https://github.com/tc39/proposal-array-find-from-last
2021-10-29 14:30:00 +08:00
exportTypedArrayMethod$2('findLastIndex', function findLastIndex(predicate /* , thisArg */) {
return $findLastIndex(aTypedArray$2(this), predicate, arguments.length > 1 ? arguments[1] : undefined);
});
var aTypedArray$1 = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod$1 = arrayBufferViewCore.exportTypedArrayMethod;
// `%TypedArray%.prototype.groupBy` method
// https://github.com/tc39/proposal-array-grouping
exportTypedArrayMethod$1('groupBy', function groupBy(callbackfn /* , thisArg */) {
var thisArg = arguments.length > 1 ? arguments[1] : undefined;
return arrayGroupBy(aTypedArray$1(this), callbackfn, thisArg, typedArraySpeciesConstructor);
});
2021-09-01 10:47:40 +08:00
var aTypedArray = arrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod = arrayBufferViewCore.exportTypedArrayMethod;
2021-10-29 14:30:00 +08:00
var arrayUniqueBy = functionUncurryThis(arrayUniqueBy$2);
2021-09-01 10:47:40 +08:00
// `%TypedArray%.prototype.uniqueBy` method
// https://github.com/tc39/proposal-array-unique
exportTypedArrayMethod('uniqueBy', function uniqueBy(resolver) {
2021-10-29 14:30:00 +08:00
return typedArrayFromSpeciesAndList(this, arrayUniqueBy(aTypedArray(this), resolver));
});
2021-09-22 10:28:02 +08:00
// `WeakMap.prototype.deleteAll` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'WeakMap', proto: true, real: true, forced: isPure }, {
2021-10-29 14:30:00 +08:00
deleteAll: collectionDeleteAll
});
// `WeakMap.from` method
// https://tc39.github.io/proposal-setmap-offrom/#sec-weakmap.from
_export({ target: 'WeakMap', stat: true }, {
from: collectionFrom
});
// `WeakMap.of` method
// https://tc39.github.io/proposal-setmap-offrom/#sec-weakmap.of
_export({ target: 'WeakMap', stat: true }, {
of: collectionOf
});
// `WeakMap.prototype.emplace` method
// https://github.com/tc39/proposal-upsert
_export({ target: 'WeakMap', proto: true, real: true, forced: isPure }, {
emplace: mapEmplace
});
2020-01-17 14:55:39 +08:00
// TODO: remove from `core-js@4`
2020-01-17 14:55:39 +08:00
// `WeakMap.prototype.upsert` method (replaced by `WeakMap.prototype.emplace`)
// https://github.com/tc39/proposal-upsert
_export({ target: 'WeakMap', proto: true, real: true, forced: isPure }, {
upsert: mapUpsert
});
// `WeakSet.prototype.addAll` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'WeakSet', proto: true, real: true, forced: isPure }, {
2021-10-29 14:30:00 +08:00
addAll: collectionAddAll
2021-09-22 10:28:02 +08:00
});
2020-01-17 14:55:39 +08:00
// `WeakSet.prototype.deleteAll` method
// https://github.com/tc39/proposal-collection-methods
_export({ target: 'WeakSet', proto: true, real: true, forced: isPure }, {
2021-10-29 14:30:00 +08:00
deleteAll: collectionDeleteAll
2021-09-22 10:28:02 +08:00
});
2021-09-01 10:47:40 +08:00
// `WeakSet.from` method
// https://tc39.github.io/proposal-setmap-offrom/#sec-weakset.from
_export({ target: 'WeakSet', stat: true }, {
from: collectionFrom
});
2020-01-17 14:55:39 +08:00
// `WeakSet.of` method
// https://tc39.github.io/proposal-setmap-offrom/#sec-weakset.of
_export({ target: 'WeakSet', stat: true }, {
of: collectionOf
});
2021-09-22 10:28:02 +08:00
// iterable DOM collections
// flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods
var domIterables = {
CSSRuleList: 0,
CSSStyleDeclaration: 0,
CSSValueList: 0,
ClientRectList: 0,
DOMRectList: 0,
DOMStringList: 0,
DOMTokenList: 1,
DataTransferItemList: 0,
FileList: 0,
HTMLAllCollection: 0,
HTMLCollection: 0,
HTMLFormElement: 0,
HTMLSelectElement: 0,
MediaList: 0,
MimeTypeArray: 0,
NamedNodeMap: 0,
NodeList: 1,
PaintRequestList: 0,
Plugin: 0,
PluginArray: 0,
SVGLengthList: 0,
SVGNumberList: 0,
SVGPathSegList: 0,
SVGPointList: 0,
SVGStringList: 0,
SVGTransformList: 0,
SourceBufferList: 0,
StyleSheetList: 0,
TextTrackCueList: 0,
TextTrackList: 0,
TouchList: 0
};
2021-10-29 14:30:00 +08:00
// in old WebKit versions, `element.classList` is not an instance of global `DOMTokenList`
var classList = documentCreateElement('span').classList;
var DOMTokenListPrototype = classList && classList.constructor && classList.constructor.prototype;
var domTokenListPrototype = DOMTokenListPrototype === Object.prototype ? undefined : DOMTokenListPrototype;
var handlePrototype$1 = function (CollectionPrototype) {
// some Chrome versions have non-configurable methods on DOMTokenList
2021-10-29 14:30:00 +08:00
if (CollectionPrototype && CollectionPrototype.forEach !== arrayForEach) { try {
createNonEnumerableProperty(CollectionPrototype, 'forEach', arrayForEach);
} catch (error) {
2021-10-29 14:30:00 +08:00
CollectionPrototype.forEach = arrayForEach;
} }
2021-10-29 14:30:00 +08:00
};
for (var COLLECTION_NAME$1 in domIterables) {
if (domIterables[COLLECTION_NAME$1]) {
handlePrototype$1(global_1[COLLECTION_NAME$1] && global_1[COLLECTION_NAME$1].prototype);
}
}
2021-10-29 14:30:00 +08:00
handlePrototype$1(domTokenListPrototype);
var ITERATOR$2 = wellKnownSymbol('iterator');
var TO_STRING_TAG = wellKnownSymbol('toStringTag');
var ArrayValues = es_array_iterator.values;
2021-10-29 14:30:00 +08:00
var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
if (CollectionPrototype) {
// some Chrome versions have non-configurable methods on DOMTokenList
if (CollectionPrototype[ITERATOR$2] !== ArrayValues) { try {
createNonEnumerableProperty(CollectionPrototype, ITERATOR$2, ArrayValues);
} catch (error) {
CollectionPrototype[ITERATOR$2] = ArrayValues;
} }
if (!CollectionPrototype[TO_STRING_TAG]) {
createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG, COLLECTION_NAME);
}
if (domIterables[COLLECTION_NAME]) { for (var METHOD_NAME in es_array_iterator) {
// some Chrome versions have non-configurable methods on DOMTokenList
if (CollectionPrototype[METHOD_NAME] !== es_array_iterator[METHOD_NAME]) { try {
createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, es_array_iterator[METHOD_NAME]);
} catch (error$1) {
CollectionPrototype[METHOD_NAME] = es_array_iterator[METHOD_NAME];
} }
} }
}
2021-10-29 14:30:00 +08:00
};
for (var COLLECTION_NAME in domIterables) {
handlePrototype(global_1[COLLECTION_NAME] && global_1[COLLECTION_NAME].prototype, COLLECTION_NAME);
}
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
handlePrototype(domTokenListPrototype, 'DOMTokenList');
var FORCED = !global_1.setImmediate || !global_1.clearImmediate;
2020-01-17 14:55:39 +08:00
// http://w3c.github.io/setImmediate/
_export({ global: true, bind: true, enumerable: true, forced: FORCED }, {
// `setImmediate` method
// http://w3c.github.io/setImmediate/#si-setImmediate
setImmediate: task$1.set,
// `clearImmediate` method
// http://w3c.github.io/setImmediate/#si-clearImmediate
clearImmediate: task$1.clear
});
2020-01-17 14:55:39 +08:00
var process$1 = global_1.process;
2020-01-17 14:55:39 +08:00
// `queueMicrotask` method
// https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-queuemicrotask
_export({ global: true, enumerable: true, noTargetGet: true }, {
queueMicrotask: function queueMicrotask(fn) {
var domain = engineIsNode && process$1.domain;
microtask(domain ? domain.bind(fn) : fn);
}
});
2020-01-17 14:55:39 +08:00
var MSIE = /MSIE .\./.test(engineUserAgent); // <- dirty ie9- check
2021-10-29 14:30:00 +08:00
var Function$1 = global_1.Function;
2020-01-17 14:55:39 +08:00
var wrap = function (scheduler) {
return function (handler, timeout /* , ...arguments */) {
var boundArgs = arguments.length > 2;
2021-10-29 14:30:00 +08:00
var args = boundArgs ? arraySlice$1(arguments, 2) : undefined;
return scheduler(boundArgs ? function () {
2021-10-29 14:30:00 +08:00
functionApply(isCallable(handler) ? handler : Function$1(handler), this, args);
} : handler, timeout);
};
2021-09-22 10:28:02 +08:00
};
2020-01-17 14:55:39 +08:00
// ie9- setTimeout & setInterval additional parameters fix
// https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#timers
_export({ global: true, bind: true, forced: MSIE }, {
// `setTimeout` method
// https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-settimeout
setTimeout: wrap(global_1.setTimeout),
// `setInterval` method
// https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-setinterval
setInterval: wrap(global_1.setInterval)
});
var ITERATOR$1 = wellKnownSymbol('iterator');
var nativeUrl = !fails(function () {
var url = new URL('b?a=1&b=2&c=3', 'http://a');
var searchParams = url.searchParams;
var result = '';
url.pathname = 'c%20d';
searchParams.forEach(function (value, key) {
searchParams['delete']('b');
result += key + value;
});
return (isPure && !url.toJSON)
|| !searchParams.sort
|| url.href !== 'http://a/c%20d?a=1&c=3'
|| searchParams.get('c') !== '3'
|| String(new URLSearchParams('?a=1')) !== 'a=1'
|| !searchParams[ITERATOR$1]
// throws in Edge
|| new URL('https://a@b').username !== 'a'
|| new URLSearchParams(new URLSearchParams('a=b')).get('a') !== 'b'
// not punycoded in Edge
|| new URL('http://тест').host !== 'xn--e1aybc'
// not escaped in Chrome 62-
|| new URL('http://a#б').hash !== '#%D0%B1'
// fails in Chrome 66-
|| result !== 'a1c3'
// throws in Safari
|| new URL('http://x', undefined).host !== 'x';
});
2020-01-17 14:55:39 +08:00
// based on https://github.com/bestiejs/punycode.js/blob/master/punycode.js
2021-10-29 14:30:00 +08:00
var maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1
var base = 36;
var tMin = 1;
var tMax = 26;
var skew = 38;
var damp = 700;
var initialBias = 72;
var initialN = 128; // 0x80
var delimiter = '-'; // '\x2D'
var regexNonASCII = /[^\0-\u007E]/; // non-ASCII chars
var regexSeparators = /[.\u3002\uFF0E\uFF61]/g; // RFC 3490 separators
var OVERFLOW_ERROR = 'Overflow: input needs wider integers to process';
var baseMinusTMin = base - tMin;
2021-10-29 14:30:00 +08:00
var RangeError = global_1.RangeError;
var exec$1 = functionUncurryThis(regexSeparators.exec);
var floor$1 = Math.floor;
2021-10-29 14:30:00 +08:00
var fromCharCode = String.fromCharCode;
var charCodeAt = functionUncurryThis(''.charCodeAt);
var join$2 = functionUncurryThis([].join);
var push$2 = functionUncurryThis([].push);
var replace$2 = functionUncurryThis(''.replace);
var split$2 = functionUncurryThis(''.split);
var toLowerCase$1 = functionUncurryThis(''.toLowerCase);
2020-01-17 14:55:39 +08:00
/**
* Creates an array containing the numeric code points of each Unicode
* character in the string. While JavaScript uses UCS-2 internally,
* this function will convert a pair of surrogate halves (each of which
* UCS-2 exposes as separate characters) into a single code point,
* matching UTF-16.
*/
var ucs2decode = function (string) {
var output = [];
var counter = 0;
var length = string.length;
while (counter < length) {
2021-10-29 14:30:00 +08:00
var value = charCodeAt(string, counter++);
if (value >= 0xD800 && value <= 0xDBFF && counter < length) {
// It's a high surrogate, and there is a next character.
2021-10-29 14:30:00 +08:00
var extra = charCodeAt(string, counter++);
if ((extra & 0xFC00) == 0xDC00) { // Low surrogate.
2021-10-29 14:30:00 +08:00
push$2(output, ((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000);
} else {
// It's an unmatched surrogate; only append this code unit, in case the
// next code unit is the high surrogate of a surrogate pair.
2021-10-29 14:30:00 +08:00
push$2(output, value);
counter--;
}
} else {
2021-10-29 14:30:00 +08:00
push$2(output, value);
}
}
return output;
};
2020-01-17 14:55:39 +08:00
/**
* Converts a digit/integer into a basic code point.
*/
var digitToBasic = function (digit) {
// 0..25 map to ASCII a..z or A..Z
// 26..35 map to ASCII 0..9
return digit + 22 + 75 * (digit < 26);
};
2020-01-17 14:55:39 +08:00
/**
* Bias adaptation function as per section 3.4 of RFC 3492.
* https://tools.ietf.org/html/rfc3492#section-3.4
*/
var adapt = function (delta, numPoints, firstTime) {
var k = 0;
delta = firstTime ? floor$1(delta / damp) : delta >> 1;
delta += floor$1(delta / numPoints);
for (; delta > baseMinusTMin * tMax >> 1; k += base) {
delta = floor$1(delta / baseMinusTMin);
}
return floor$1(k + (baseMinusTMin + 1) * delta / (delta + skew));
};
2020-01-17 14:55:39 +08:00
/**
* Converts a string of Unicode symbols (e.g. a domain name label) to a
* Punycode string of ASCII-only symbols.
*/
// eslint-disable-next-line max-statements -- TODO
var encode = function (input) {
var output = [];
2020-01-17 14:55:39 +08:00
// Convert the input in UCS-2 to an array of Unicode code points.
input = ucs2decode(input);
2020-01-17 14:55:39 +08:00
// Cache the length.
var inputLength = input.length;
2020-01-17 14:55:39 +08:00
// Initialize the state.
var n = initialN;
var delta = 0;
var bias = initialBias;
var i, currentValue;
2020-01-17 14:55:39 +08:00
// Handle the basic code points.
for (i = 0; i < input.length; i++) {
currentValue = input[i];
if (currentValue < 0x80) {
2021-10-29 14:30:00 +08:00
push$2(output, fromCharCode(currentValue));
}
}
2020-01-17 14:55:39 +08:00
var basicLength = output.length; // number of basic code points.
var handledCPCount = basicLength; // number of code points that have been handled;
// Finish the basic string with a delimiter unless it's empty.
if (basicLength) {
2021-10-29 14:30:00 +08:00
push$2(output, delimiter);
}
2020-01-17 14:55:39 +08:00
// Main encoding loop:
while (handledCPCount < inputLength) {
// All non-basic code points < n have been handled already. Find the next larger one:
var m = maxInt;
for (i = 0; i < input.length; i++) {
currentValue = input[i];
if (currentValue >= n && currentValue < m) {
m = currentValue;
}
}
2020-01-17 14:55:39 +08:00
// Increase `delta` enough to advance the decoder's <n,i> state to <m,0>, but guard against overflow.
var handledCPCountPlusOne = handledCPCount + 1;
if (m - n > floor$1((maxInt - delta) / handledCPCountPlusOne)) {
throw RangeError(OVERFLOW_ERROR);
}
2020-01-17 14:55:39 +08:00
delta += (m - n) * handledCPCountPlusOne;
n = m;
2020-01-17 14:55:39 +08:00
for (i = 0; i < input.length; i++) {
currentValue = input[i];
if (currentValue < n && ++delta > maxInt) {
throw RangeError(OVERFLOW_ERROR);
}
if (currentValue == n) {
// Represent delta as a generalized variable-length integer.
var q = delta;
for (var k = base; /* no condition */; k += base) {
var t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias);
if (q < t) { break; }
var qMinusT = q - t;
var baseMinusT = base - t;
2021-10-29 14:30:00 +08:00
push$2(output, fromCharCode(digitToBasic(t + qMinusT % baseMinusT)));
q = floor$1(qMinusT / baseMinusT);
}
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
push$2(output, fromCharCode(digitToBasic(q)));
bias = adapt(delta, handledCPCountPlusOne, handledCPCount == basicLength);
delta = 0;
++handledCPCount;
}
}
2020-01-17 14:55:39 +08:00
++delta;
++n;
}
2021-10-29 14:30:00 +08:00
return join$2(output, '');
};
2021-09-01 10:47:40 +08:00
var stringPunycodeToAscii = function (input) {
var encoded = [];
2021-10-29 14:30:00 +08:00
var labels = split$2(replace$2(toLowerCase$1(input), regexSeparators, '\u002E'), '.');
var i, label;
for (i = 0; i < labels.length; i++) {
label = labels[i];
2021-10-29 14:30:00 +08:00
push$2(encoded, exec$1(regexNonASCII, label) ? 'xn--' + encode(label) : label);
}
2021-10-29 14:30:00 +08:00
return join$2(encoded, '.');
};
2021-09-01 10:47:40 +08:00
// TODO: in core-js@4, move /modules/ dependencies to public entries for better optimization by tools like `preset-env`
2021-09-01 10:47:40 +08:00
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
2021-10-29 14:30:00 +08:00
var ITERATOR = wellKnownSymbol('iterator');
var URL_SEARCH_PARAMS = 'URLSearchParams';
var URL_SEARCH_PARAMS_ITERATOR = URL_SEARCH_PARAMS + 'Iterator';
var setInternalState$1 = internalState.set;
var getInternalParamsState = internalState.getterFor(URL_SEARCH_PARAMS);
var getInternalIteratorState = internalState.getterFor(URL_SEARCH_PARAMS_ITERATOR);
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var n$Fetch = getBuiltIn('fetch');
var N$Request = getBuiltIn('Request');
var Headers = getBuiltIn('Headers');
var RequestPrototype = N$Request && N$Request.prototype;
var HeadersPrototype = Headers && Headers.prototype;
var RegExp$1 = global_1.RegExp;
var TypeError$2 = global_1.TypeError;
var decodeURIComponent = global_1.decodeURIComponent;
var encodeURIComponent$1 = global_1.encodeURIComponent;
var charAt$1 = functionUncurryThis(''.charAt);
var join$1 = functionUncurryThis([].join);
var push$1 = functionUncurryThis([].push);
var replace$1 = functionUncurryThis(''.replace);
var shift$1 = functionUncurryThis([].shift);
var splice = functionUncurryThis([].splice);
var split$1 = functionUncurryThis(''.split);
var stringSlice$1 = functionUncurryThis(''.slice);
var plus = /\+/g;
var sequences = Array(4);
2021-02-19 17:33:10 +08:00
var percentSequence = function (bytes) {
2021-10-29 14:30:00 +08:00
return sequences[bytes - 1] || (sequences[bytes - 1] = RegExp$1('((?:%[\\da-f]{2}){' + bytes + '})', 'gi'));
};
2021-02-19 17:33:10 +08:00
var percentDecode = function (sequence) {
try {
return decodeURIComponent(sequence);
} catch (error) {
return sequence;
}
};
2021-09-22 10:28:02 +08:00
var deserialize = function (it) {
2021-10-29 14:30:00 +08:00
var result = replace$1(it, plus, ' ');
var bytes = 4;
try {
return decodeURIComponent(result);
} catch (error) {
while (bytes) {
2021-10-29 14:30:00 +08:00
result = replace$1(result, percentSequence(bytes--), percentDecode);
}
return result;
2021-09-22 10:28:02 +08:00
}
};
2021-09-22 10:28:02 +08:00
var find = /[!'()~]|%20/g;
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
var replacements = {
'!': '%21',
"'": '%27',
'(': '%28',
')': '%29',
'~': '%7E',
'%20': '+'
};
2021-09-22 10:28:02 +08:00
var replacer = function (match) {
2021-10-29 14:30:00 +08:00
return replacements[match];
};
2021-09-22 10:28:02 +08:00
var serialize = function (it) {
2021-10-29 14:30:00 +08:00
return replace$1(encodeURIComponent$1(it), find, replacer);
};
2021-09-22 10:28:02 +08:00
var parseSearchParams = function (result, query) {
if (query) {
2021-10-29 14:30:00 +08:00
var attributes = split$1(query, '&');
var index = 0;
var attribute, entry;
while (index < attributes.length) {
attribute = attributes[index++];
if (attribute.length) {
2021-10-29 14:30:00 +08:00
entry = split$1(attribute, '=');
push$1(result, {
key: deserialize(shift$1(entry)),
value: deserialize(join$1(entry, '='))
});
}
}
}
};
2021-09-22 10:28:02 +08:00
var updateSearchParams = function (query) {
this.entries.length = 0;
parseSearchParams(this.entries, query);
};
2021-09-22 10:28:02 +08:00
var validateArgumentsLength = function (passed, required) {
2021-10-29 14:30:00 +08:00
if (passed < required) { throw TypeError$2('Not enough arguments'); }
};
2021-09-22 10:28:02 +08:00
var URLSearchParamsIterator = createIteratorConstructor(function Iterator(params, kind) {
setInternalState$1(this, {
type: URL_SEARCH_PARAMS_ITERATOR,
iterator: getIterator(getInternalParamsState(params).entries),
kind: kind
});
}, 'Iterator', function next() {
var state = getInternalIteratorState(this);
var kind = state.kind;
var step = state.iterator.next();
var entry = step.value;
if (!step.done) {
step.value = kind === 'keys' ? entry.key : kind === 'values' ? entry.value : [entry.key, entry.value];
} return step;
});
2021-09-22 10:28:02 +08:00
// `URLSearchParams` constructor
// https://url.spec.whatwg.org/#interface-urlsearchparams
var URLSearchParamsConstructor = function URLSearchParams(/* init */) {
2021-10-29 14:30:00 +08:00
anInstance(this, URLSearchParamsPrototype);
var init = arguments.length > 0 ? arguments[0] : undefined;
var that = this;
var entries = [];
var iteratorMethod, iterator, next, step, entryIterator, entryNext, first, second, key;
2021-09-22 10:28:02 +08:00
setInternalState$1(that, {
type: URL_SEARCH_PARAMS,
entries: entries,
updateURL: function () { /* empty */ },
updateSearchParams: updateSearchParams
});
2021-09-22 10:28:02 +08:00
if (init !== undefined) {
if (isObject(init)) {
iteratorMethod = getIteratorMethod(init);
2021-10-29 14:30:00 +08:00
if (iteratorMethod) {
iterator = getIterator(init, iteratorMethod);
next = iterator.next;
2021-10-29 14:30:00 +08:00
while (!(step = functionCall(next, iterator)).done) {
entryIterator = getIterator(anObject(step.value));
entryNext = entryIterator.next;
if (
2021-10-29 14:30:00 +08:00
(first = functionCall(entryNext, entryIterator)).done ||
(second = functionCall(entryNext, entryIterator)).done ||
!functionCall(entryNext, entryIterator).done
) { throw TypeError$2('Expected sequence with length 2'); }
push$1(entries, { key: toString_1(first.value), value: toString_1(second.value) });
}
2021-10-29 14:30:00 +08:00
} else { for (key in init) { if (hasOwnProperty_1(init, key)) { push$1(entries, { key: key, value: toString_1(init[key]) }); } } }
} else {
2021-10-29 14:30:00 +08:00
parseSearchParams(
entries,
typeof init == 'string' ? charAt$1(init, 0) === '?' ? stringSlice$1(init, 1) : init : toString_1(init)
);
}
}
};
2021-09-22 10:28:02 +08:00
var URLSearchParamsPrototype = URLSearchParamsConstructor.prototype;
2021-09-22 10:28:02 +08:00
redefineAll(URLSearchParamsPrototype, {
// `URLSearchParams.prototype.append` method
// https://url.spec.whatwg.org/#dom-urlsearchparams-append
append: function append(name, value) {
validateArgumentsLength(arguments.length, 2);
var state = getInternalParamsState(this);
2021-10-29 14:30:00 +08:00
push$1(state.entries, { key: toString_1(name), value: toString_1(value) });
state.updateURL();
},
// `URLSearchParams.prototype.delete` method
// https://url.spec.whatwg.org/#dom-urlsearchparams-delete
'delete': function (name) {
validateArgumentsLength(arguments.length, 1);
var state = getInternalParamsState(this);
var entries = state.entries;
2021-10-29 14:30:00 +08:00
var key = toString_1(name);
var index = 0;
while (index < entries.length) {
2021-10-29 14:30:00 +08:00
if (entries[index].key === key) { splice(entries, index, 1); }
else { index++; }
}
state.updateURL();
},
// `URLSearchParams.prototype.get` method
// https://url.spec.whatwg.org/#dom-urlsearchparams-get
get: function get(name) {
validateArgumentsLength(arguments.length, 1);
var entries = getInternalParamsState(this).entries;
2021-10-29 14:30:00 +08:00
var key = toString_1(name);
var index = 0;
for (; index < entries.length; index++) {
if (entries[index].key === key) { return entries[index].value; }
}
return null;
},
// `URLSearchParams.prototype.getAll` method
// https://url.spec.whatwg.org/#dom-urlsearchparams-getall
getAll: function getAll(name) {
validateArgumentsLength(arguments.length, 1);
var entries = getInternalParamsState(this).entries;
2021-10-29 14:30:00 +08:00
var key = toString_1(name);
var result = [];
var index = 0;
for (; index < entries.length; index++) {
2021-10-29 14:30:00 +08:00
if (entries[index].key === key) { push$1(result, entries[index].value); }
}
return result;
},
// `URLSearchParams.prototype.has` method
// https://url.spec.whatwg.org/#dom-urlsearchparams-has
has: function has(name) {
validateArgumentsLength(arguments.length, 1);
var entries = getInternalParamsState(this).entries;
2021-10-29 14:30:00 +08:00
var key = toString_1(name);
var index = 0;
while (index < entries.length) {
if (entries[index++].key === key) { return true; }
}
return false;
},
// `URLSearchParams.prototype.set` method
// https://url.spec.whatwg.org/#dom-urlsearchparams-set
set: function set(name, value) {
validateArgumentsLength(arguments.length, 1);
var state = getInternalParamsState(this);
var entries = state.entries;
var found = false;
2021-10-29 14:30:00 +08:00
var key = toString_1(name);
var val = toString_1(value);
var index = 0;
var entry;
for (; index < entries.length; index++) {
entry = entries[index];
if (entry.key === key) {
2021-10-29 14:30:00 +08:00
if (found) { splice(entries, index--, 1); }
else {
found = true;
entry.value = val;
}
}
}
2021-10-29 14:30:00 +08:00
if (!found) { push$1(entries, { key: key, value: val }); }
state.updateURL();
},
// `URLSearchParams.prototype.sort` method
// https://url.spec.whatwg.org/#dom-urlsearchparams-sort
sort: function sort() {
var state = getInternalParamsState(this);
2021-10-29 14:30:00 +08:00
arraySort(state.entries, function (a, b) {
return a.key > b.key ? 1 : -1;
});
state.updateURL();
},
// `URLSearchParams.prototype.forEach` method
forEach: function forEach(callback /* , thisArg */) {
var entries = getInternalParamsState(this).entries;
2021-10-29 14:30:00 +08:00
var boundFunction = functionBindContext(callback, arguments.length > 1 ? arguments[1] : undefined);
var index = 0;
var entry;
while (index < entries.length) {
entry = entries[index++];
boundFunction(entry.value, entry.key, this);
}
},
// `URLSearchParams.prototype.keys` method
keys: function keys() {
return new URLSearchParamsIterator(this, 'keys');
},
// `URLSearchParams.prototype.values` method
values: function values() {
return new URLSearchParamsIterator(this, 'values');
},
// `URLSearchParams.prototype.entries` method
entries: function entries() {
return new URLSearchParamsIterator(this, 'entries');
2021-09-22 10:28:02 +08:00
}
}, { enumerable: true });
2021-09-22 10:28:02 +08:00
// `URLSearchParams.prototype[@@iterator]` method
2021-10-29 14:30:00 +08:00
redefine(URLSearchParamsPrototype, ITERATOR, URLSearchParamsPrototype.entries, { name: 'entries' });
2021-09-22 10:28:02 +08:00
// `URLSearchParams.prototype.toString` method
// https://url.spec.whatwg.org/#urlsearchparams-stringification-behavior
redefine(URLSearchParamsPrototype, 'toString', function toString() {
var entries = getInternalParamsState(this).entries;
var result = [];
var index = 0;
var entry;
while (index < entries.length) {
entry = entries[index++];
2021-10-29 14:30:00 +08:00
push$1(result, serialize(entry.key) + '=' + serialize(entry.value));
} return join$1(result, '&');
}, { enumerable: true });
2021-09-22 10:28:02 +08:00
setToStringTag(URLSearchParamsConstructor, URL_SEARCH_PARAMS);
2021-09-22 10:28:02 +08:00
_export({ global: true, forced: !nativeUrl }, {
URLSearchParams: URLSearchParamsConstructor
});
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
// Wrap `fetch` and `Request` for correct work with polyfilled `URLSearchParams`
if (!nativeUrl && isCallable(Headers)) {
var headersHas = functionUncurryThis(HeadersPrototype.has);
var headersSet = functionUncurryThis(HeadersPrototype.set);
var wrapRequestOptions = function (init) {
if (isObject(init)) {
var body = init.body;
var headers;
if (classof(body) === URL_SEARCH_PARAMS) {
headers = init.headers ? new Headers(init.headers) : new Headers();
if (!headersHas(headers, 'content-type')) {
headersSet(headers, 'content-type', 'application/x-www-form-urlencoded;charset=UTF-8');
}
2021-10-29 14:30:00 +08:00
return objectCreate(init, {
body: createPropertyDescriptor(0, toString_1(body)),
headers: createPropertyDescriptor(0, headers)
});
}
} return init;
};
if (isCallable(n$Fetch)) {
_export({ global: true, enumerable: true, forced: true }, {
fetch: function fetch(input /* , init */) {
return n$Fetch(input, arguments.length > 1 ? wrapRequestOptions(arguments[1]) : {});
}
});
}
if (isCallable(N$Request)) {
var RequestConstructor = function Request(input /* , init */) {
anInstance(this, RequestPrototype);
return new N$Request(input, arguments.length > 1 ? wrapRequestOptions(arguments[1]) : {});
};
RequestPrototype.constructor = RequestConstructor;
RequestConstructor.prototype = RequestPrototype;
_export({ global: true, forced: true }, {
Request: RequestConstructor
});
}
}
2021-09-22 10:28:02 +08:00
var web_urlSearchParams = {
URLSearchParams: URLSearchParamsConstructor,
getState: getInternalParamsState
};
2021-09-22 10:28:02 +08:00
// TODO: in core-js@4, move /modules/ dependencies to public entries for better optimization by tools like `preset-env`
2021-09-22 10:28:02 +08:00
2021-10-29 14:30:00 +08:00
var codeAt = stringMultibyte.codeAt;
2021-09-22 10:28:02 +08:00
2021-02-19 17:33:10 +08:00
2020-01-17 14:55:39 +08:00
2021-10-29 14:30:00 +08:00
var setInternalState = internalState.set;
var getInternalURLState = internalState.getterFor('URL');
2021-10-29 14:30:00 +08:00
var URLSearchParams$1 = web_urlSearchParams.URLSearchParams;
var getInternalSearchParamsState = web_urlSearchParams.getState;
var NativeURL = global_1.URL;
var TypeError$1 = global_1.TypeError;
var parseInt$1 = global_1.parseInt;
var floor = Math.floor;
var pow = Math.pow;
2021-10-29 14:30:00 +08:00
var charAt = functionUncurryThis(''.charAt);
var exec = functionUncurryThis(/./.exec);
var join = functionUncurryThis([].join);
var numberToString = functionUncurryThis(1.0.toString);
var pop = functionUncurryThis([].pop);
var push = functionUncurryThis([].push);
var replace = functionUncurryThis(''.replace);
var shift = functionUncurryThis([].shift);
var split = functionUncurryThis(''.split);
var stringSlice = functionUncurryThis(''.slice);
var toLowerCase = functionUncurryThis(''.toLowerCase);
var unshift = functionUncurryThis([].unshift);
var INVALID_AUTHORITY = 'Invalid authority';
var INVALID_SCHEME = 'Invalid scheme';
var INVALID_HOST = 'Invalid host';
var INVALID_PORT = 'Invalid port';
2021-10-29 14:30:00 +08:00
var ALPHA = /[a-z]/i;
// eslint-disable-next-line regexp/no-obscure-range -- safe
2021-10-29 14:30:00 +08:00
var ALPHANUMERIC = /[\d+-.a-z]/i;
var DIGIT = /\d/;
2021-10-29 14:30:00 +08:00
var HEX_START = /^0x/i;
var OCT = /^[0-7]+$/;
var DEC = /^\d+$/;
2021-10-29 14:30:00 +08:00
var HEX = /^[\da-f]+$/i;
/* eslint-disable regexp/no-control-character -- safe */
var FORBIDDEN_HOST_CODE_POINT = /[\0\t\n\r #%/:<>?@[\\\]^|]/;
var FORBIDDEN_HOST_CODE_POINT_EXCLUDING_PERCENT = /[\0\t\n\r #/:<>?@[\\\]^|]/;
var LEADING_AND_TRAILING_C0_CONTROL_OR_SPACE = /^[\u0000-\u0020]+|[\u0000-\u0020]+$/g;
var TAB_AND_NEW_LINE = /[\t\n\r]/g;
2021-10-29 14:30:00 +08:00
/* eslint-enable regexp/no-control-character -- safe */
var EOF;
var parseHost = function (url, input) {
var result, codePoints, index;
2021-10-29 14:30:00 +08:00
if (charAt(input, 0) == '[') {
if (charAt(input, input.length - 1) != ']') { return INVALID_HOST; }
result = parseIPv6(stringSlice(input, 1, -1));
if (!result) { return INVALID_HOST; }
url.host = result;
// opaque host
} else if (!isSpecial(url)) {
2021-10-29 14:30:00 +08:00
if (exec(FORBIDDEN_HOST_CODE_POINT_EXCLUDING_PERCENT, input)) { return INVALID_HOST; }
result = '';
codePoints = arrayFrom(input);
for (index = 0; index < codePoints.length; index++) {
result += percentEncode(codePoints[index], C0ControlPercentEncodeSet);
}
url.host = result;
} else {
input = stringPunycodeToAscii(input);
2021-10-29 14:30:00 +08:00
if (exec(FORBIDDEN_HOST_CODE_POINT, input)) { return INVALID_HOST; }
result = parseIPv4(input);
if (result === null) { return INVALID_HOST; }
url.host = result;
}
};
var parseIPv4 = function (input) {
2021-10-29 14:30:00 +08:00
var parts = split(input, '.');
var partsLength, numbers, index, part, radix, number, ipv4;
if (parts.length && parts[parts.length - 1] == '') {
2021-10-29 14:30:00 +08:00
parts.length--;
}
partsLength = parts.length;
if (partsLength > 4) { return input; }
numbers = [];
for (index = 0; index < partsLength; index++) {
part = parts[index];
if (part == '') { return input; }
radix = 10;
2021-10-29 14:30:00 +08:00
if (part.length > 1 && charAt(part, 0) == '0') {
radix = exec(HEX_START, part) ? 16 : 8;
part = stringSlice(part, radix == 8 ? 1 : 2);
}
if (part === '') {
number = 0;
} else {
2021-10-29 14:30:00 +08:00
if (!exec(radix == 10 ? DEC : radix == 8 ? OCT : HEX, part)) { return input; }
number = parseInt$1(part, radix);
}
2021-10-29 14:30:00 +08:00
push(numbers, number);
}
for (index = 0; index < partsLength; index++) {
number = numbers[index];
if (index == partsLength - 1) {
if (number >= pow(256, 5 - partsLength)) { return null; }
} else if (number > 255) { return null; }
}
2021-10-29 14:30:00 +08:00
ipv4 = pop(numbers);
for (index = 0; index < numbers.length; index++) {
ipv4 += numbers[index] * pow(256, 3 - index);
}
return ipv4;
};
// eslint-disable-next-line max-statements -- TODO
var parseIPv6 = function (input) {
var address = [0, 0, 0, 0, 0, 0, 0, 0];
var pieceIndex = 0;
var compress = null;
var pointer = 0;
var value, length, numbersSeen, ipv4Piece, number, swaps, swap;
2021-10-29 14:30:00 +08:00
var chr = function () {
return charAt(input, pointer);
};
2021-10-29 14:30:00 +08:00
if (chr() == ':') {
if (charAt(input, 1) != ':') { return; }
pointer += 2;
pieceIndex++;
compress = pieceIndex;
}
2021-10-29 14:30:00 +08:00
while (chr()) {
if (pieceIndex == 8) { return; }
2021-10-29 14:30:00 +08:00
if (chr() == ':') {
if (compress !== null) { return; }
pointer++;
pieceIndex++;
compress = pieceIndex;
continue;
}
value = length = 0;
2021-10-29 14:30:00 +08:00
while (length < 4 && exec(HEX, chr())) {
value = value * 16 + parseInt$1(chr(), 16);
pointer++;
length++;
}
2021-10-29 14:30:00 +08:00
if (chr() == '.') {
if (length == 0) { return; }
pointer -= length;
if (pieceIndex > 6) { return; }
numbersSeen = 0;
2021-10-29 14:30:00 +08:00
while (chr()) {
ipv4Piece = null;
if (numbersSeen > 0) {
2021-10-29 14:30:00 +08:00
if (chr() == '.' && numbersSeen < 4) { pointer++; }
else { return; }
}
2021-10-29 14:30:00 +08:00
if (!exec(DIGIT, chr())) { return; }
while (exec(DIGIT, chr())) {
number = parseInt$1(chr(), 10);
if (ipv4Piece === null) { ipv4Piece = number; }
else if (ipv4Piece == 0) { return; }
else { ipv4Piece = ipv4Piece * 10 + number; }
if (ipv4Piece > 255) { return; }
pointer++;
}
address[pieceIndex] = address[pieceIndex] * 256 + ipv4Piece;
numbersSeen++;
if (numbersSeen == 2 || numbersSeen == 4) { pieceIndex++; }
}
if (numbersSeen != 4) { return; }
break;
2021-10-29 14:30:00 +08:00
} else if (chr() == ':') {
pointer++;
2021-10-29 14:30:00 +08:00
if (!chr()) { return; }
} else if (chr()) { return; }
address[pieceIndex++] = value;
}
if (compress !== null) {
swaps = pieceIndex - compress;
pieceIndex = 7;
while (pieceIndex != 0 && swaps > 0) {
swap = address[pieceIndex];
address[pieceIndex--] = address[compress + swaps - 1];
address[compress + --swaps] = swap;
}
} else if (pieceIndex != 8) { return; }
return address;
};
var findLongestZeroSequence = function (ipv6) {
var maxIndex = null;
var maxLength = 1;
var currStart = null;
var currLength = 0;
var index = 0;
for (; index < 8; index++) {
if (ipv6[index] !== 0) {
if (currLength > maxLength) {
maxIndex = currStart;
maxLength = currLength;
}
currStart = null;
currLength = 0;
} else {
if (currStart === null) { currStart = index; }
++currLength;
}
}
if (currLength > maxLength) {
maxIndex = currStart;
maxLength = currLength;
}
return maxIndex;
};
var serializeHost = function (host) {
var result, index, compress, ignore0;
// ipv4
if (typeof host == 'number') {
result = [];
for (index = 0; index < 4; index++) {
2021-10-29 14:30:00 +08:00
unshift(result, host % 256);
host = floor(host / 256);
2021-10-29 14:30:00 +08:00
} return join(result, '.');
// ipv6
} else if (typeof host == 'object') {
result = '';
compress = findLongestZeroSequence(host);
for (index = 0; index < 8; index++) {
if (ignore0 && host[index] === 0) { continue; }
if (ignore0) { ignore0 = false; }
if (compress === index) {
result += index ? ':' : '::';
ignore0 = true;
} else {
2021-10-29 14:30:00 +08:00
result += numberToString(host[index], 16);
if (index < 7) { result += ':'; }
}
}
return '[' + result + ']';
} return host;
};
var C0ControlPercentEncodeSet = {};
var fragmentPercentEncodeSet = objectAssign({}, C0ControlPercentEncodeSet, {
' ': 1, '"': 1, '<': 1, '>': 1, '`': 1
});
var pathPercentEncodeSet = objectAssign({}, fragmentPercentEncodeSet, {
'#': 1, '?': 1, '{': 1, '}': 1
});
var userinfoPercentEncodeSet = objectAssign({}, pathPercentEncodeSet, {
'/': 1, ':': 1, ';': 1, '=': 1, '@': 1, '[': 1, '\\': 1, ']': 1, '^': 1, '|': 1
});
2021-10-29 14:30:00 +08:00
var percentEncode = function (chr, set) {
var code = codeAt(chr, 0);
return code > 0x20 && code < 0x7F && !hasOwnProperty_1(set, chr) ? chr : encodeURIComponent(chr);
};
var specialSchemes = {
ftp: 21,
file: null,
http: 80,
https: 443,
ws: 80,
wss: 443
};
var isSpecial = function (url) {
2021-10-29 14:30:00 +08:00
return hasOwnProperty_1(specialSchemes, url.scheme);
};
var includesCredentials = function (url) {
return url.username != '' || url.password != '';
};
var cannotHaveUsernamePasswordPort = function (url) {
return !url.host || url.cannotBeABaseURL || url.scheme == 'file';
};
var isWindowsDriveLetter = function (string, normalized) {
var second;
2021-10-29 14:30:00 +08:00
return string.length == 2 && exec(ALPHA, charAt(string, 0))
&& ((second = charAt(string, 1)) == ':' || (!normalized && second == '|'));
};
var startsWithWindowsDriveLetter = function (string) {
var third;
2021-10-29 14:30:00 +08:00
return string.length > 1 && isWindowsDriveLetter(stringSlice(string, 0, 2)) && (
string.length == 2 ||
2021-10-29 14:30:00 +08:00
((third = charAt(string, 2)) === '/' || third === '\\' || third === '?' || third === '#')
);
};
var shortenURLsPath = function (url) {
var path = url.path;
var pathSize = path.length;
if (pathSize && (url.scheme != 'file' || pathSize != 1 || !isWindowsDriveLetter(path[0], true))) {
2021-10-29 14:30:00 +08:00
path.length--;
}
};
var isSingleDot = function (segment) {
2021-10-29 14:30:00 +08:00
return segment === '.' || toLowerCase(segment) === '%2e';
};
var isDoubleDot = function (segment) {
2021-10-29 14:30:00 +08:00
segment = toLowerCase(segment);
return segment === '..' || segment === '%2e.' || segment === '.%2e' || segment === '%2e%2e';
};
// States:
var SCHEME_START = {};
var SCHEME = {};
var NO_SCHEME = {};
var SPECIAL_RELATIVE_OR_AUTHORITY = {};
var PATH_OR_AUTHORITY = {};
var RELATIVE = {};
var RELATIVE_SLASH = {};
var SPECIAL_AUTHORITY_SLASHES = {};
var SPECIAL_AUTHORITY_IGNORE_SLASHES = {};
var AUTHORITY = {};
var HOST = {};
var HOSTNAME = {};
var PORT = {};
var FILE = {};
var FILE_SLASH = {};
var FILE_HOST = {};
var PATH_START = {};
var PATH = {};
var CANNOT_BE_A_BASE_URL_PATH = {};
var QUERY = {};
var FRAGMENT = {};
// eslint-disable-next-line max-statements -- TODO
var parseURL = function (url, input, stateOverride, base) {
var state = stateOverride || SCHEME_START;
var pointer = 0;
var buffer = '';
var seenAt = false;
var seenBracket = false;
var seenPasswordToken = false;
2021-10-29 14:30:00 +08:00
var codePoints, chr, bufferCodePoints, failure;
if (!stateOverride) {
url.scheme = '';
url.username = '';
url.password = '';
url.host = null;
url.port = null;
url.path = [];
url.query = null;
url.fragment = null;
url.cannotBeABaseURL = false;
2021-10-29 14:30:00 +08:00
input = replace(input, LEADING_AND_TRAILING_C0_CONTROL_OR_SPACE, '');
}
2021-10-29 14:30:00 +08:00
input = replace(input, TAB_AND_NEW_LINE, '');
codePoints = arrayFrom(input);
while (pointer <= codePoints.length) {
2021-10-29 14:30:00 +08:00
chr = codePoints[pointer];
switch (state) {
case SCHEME_START:
2021-10-29 14:30:00 +08:00
if (chr && exec(ALPHA, chr)) {
buffer += toLowerCase(chr);
state = SCHEME;
} else if (!stateOverride) {
state = NO_SCHEME;
continue;
} else { return INVALID_SCHEME; }
break;
case SCHEME:
2021-10-29 14:30:00 +08:00
if (chr && (exec(ALPHANUMERIC, chr) || chr == '+' || chr == '-' || chr == '.')) {
buffer += toLowerCase(chr);
} else if (chr == ':') {
if (stateOverride && (
2021-10-29 14:30:00 +08:00
(isSpecial(url) != hasOwnProperty_1(specialSchemes, buffer)) ||
(buffer == 'file' && (includesCredentials(url) || url.port !== null)) ||
(url.scheme == 'file' && !url.host)
)) { return; }
url.scheme = buffer;
if (stateOverride) {
if (isSpecial(url) && specialSchemes[url.scheme] == url.port) { url.port = null; }
return;
}
buffer = '';
if (url.scheme == 'file') {
state = FILE;
} else if (isSpecial(url) && base && base.scheme == url.scheme) {
state = SPECIAL_RELATIVE_OR_AUTHORITY;
} else if (isSpecial(url)) {
state = SPECIAL_AUTHORITY_SLASHES;
} else if (codePoints[pointer + 1] == '/') {
state = PATH_OR_AUTHORITY;
pointer++;
} else {
url.cannotBeABaseURL = true;
2021-10-29 14:30:00 +08:00
push(url.path, '');
state = CANNOT_BE_A_BASE_URL_PATH;
}
} else if (!stateOverride) {
buffer = '';
state = NO_SCHEME;
pointer = 0;
continue;
} else { return INVALID_SCHEME; }
break;
case NO_SCHEME:
2021-10-29 14:30:00 +08:00
if (!base || (base.cannotBeABaseURL && chr != '#')) { return INVALID_SCHEME; }
if (base.cannotBeABaseURL && chr == '#') {
url.scheme = base.scheme;
2021-10-29 14:30:00 +08:00
url.path = arraySlice$1(base.path);
url.query = base.query;
url.fragment = '';
url.cannotBeABaseURL = true;
state = FRAGMENT;
break;
}
state = base.scheme == 'file' ? FILE : RELATIVE;
continue;
case SPECIAL_RELATIVE_OR_AUTHORITY:
2021-10-29 14:30:00 +08:00
if (chr == '/' && codePoints[pointer + 1] == '/') {
state = SPECIAL_AUTHORITY_IGNORE_SLASHES;
pointer++;
} else {
state = RELATIVE;
continue;
} break;
case PATH_OR_AUTHORITY:
2021-10-29 14:30:00 +08:00
if (chr == '/') {
state = AUTHORITY;
break;
} else {
state = PATH;
continue;
}
case RELATIVE:
url.scheme = base.scheme;
2021-10-29 14:30:00 +08:00
if (chr == EOF) {
url.username = base.username;
url.password = base.password;
url.host = base.host;
url.port = base.port;
2021-10-29 14:30:00 +08:00
url.path = arraySlice$1(base.path);
url.query = base.query;
2021-10-29 14:30:00 +08:00
} else if (chr == '/' || (chr == '\\' && isSpecial(url))) {
state = RELATIVE_SLASH;
2021-10-29 14:30:00 +08:00
} else if (chr == '?') {
url.username = base.username;
url.password = base.password;
url.host = base.host;
url.port = base.port;
2021-10-29 14:30:00 +08:00
url.path = arraySlice$1(base.path);
url.query = '';
state = QUERY;
2021-10-29 14:30:00 +08:00
} else if (chr == '#') {
url.username = base.username;
url.password = base.password;
url.host = base.host;
url.port = base.port;
2021-10-29 14:30:00 +08:00
url.path = arraySlice$1(base.path);
url.query = base.query;
url.fragment = '';
state = FRAGMENT;
} else {
url.username = base.username;
url.password = base.password;
url.host = base.host;
url.port = base.port;
2021-10-29 14:30:00 +08:00
url.path = arraySlice$1(base.path);
url.path.length--;
state = PATH;
continue;
} break;
case RELATIVE_SLASH:
2021-10-29 14:30:00 +08:00
if (isSpecial(url) && (chr == '/' || chr == '\\')) {
state = SPECIAL_AUTHORITY_IGNORE_SLASHES;
2021-10-29 14:30:00 +08:00
} else if (chr == '/') {
state = AUTHORITY;
} else {
url.username = base.username;
url.password = base.password;
url.host = base.host;
url.port = base.port;
state = PATH;
continue;
} break;
case SPECIAL_AUTHORITY_SLASHES:
state = SPECIAL_AUTHORITY_IGNORE_SLASHES;
2021-10-29 14:30:00 +08:00
if (chr != '/' || charAt(buffer, pointer + 1) != '/') { continue; }
pointer++;
break;
case SPECIAL_AUTHORITY_IGNORE_SLASHES:
2021-10-29 14:30:00 +08:00
if (chr != '/' && chr != '\\') {
state = AUTHORITY;
continue;
} break;
case AUTHORITY:
2021-10-29 14:30:00 +08:00
if (chr == '@') {
if (seenAt) { buffer = '%40' + buffer; }
seenAt = true;
bufferCodePoints = arrayFrom(buffer);
for (var i = 0; i < bufferCodePoints.length; i++) {
var codePoint = bufferCodePoints[i];
if (codePoint == ':' && !seenPasswordToken) {
seenPasswordToken = true;
continue;
}
var encodedCodePoints = percentEncode(codePoint, userinfoPercentEncodeSet);
if (seenPasswordToken) { url.password += encodedCodePoints; }
else { url.username += encodedCodePoints; }
}
buffer = '';
} else if (
2021-10-29 14:30:00 +08:00
chr == EOF || chr == '/' || chr == '?' || chr == '#' ||
(chr == '\\' && isSpecial(url))
) {
if (seenAt && buffer == '') { return INVALID_AUTHORITY; }
pointer -= arrayFrom(buffer).length + 1;
buffer = '';
state = HOST;
2021-10-29 14:30:00 +08:00
} else { buffer += chr; }
break;
case HOST:
case HOSTNAME:
if (stateOverride && url.scheme == 'file') {
state = FILE_HOST;
continue;
2021-10-29 14:30:00 +08:00
} else if (chr == ':' && !seenBracket) {
if (buffer == '') { return INVALID_HOST; }
failure = parseHost(url, buffer);
if (failure) { return failure; }
buffer = '';
state = PORT;
if (stateOverride == HOSTNAME) { return; }
} else if (
2021-10-29 14:30:00 +08:00
chr == EOF || chr == '/' || chr == '?' || chr == '#' ||
(chr == '\\' && isSpecial(url))
) {
if (isSpecial(url) && buffer == '') { return INVALID_HOST; }
if (stateOverride && buffer == '' && (includesCredentials(url) || url.port !== null)) { return; }
failure = parseHost(url, buffer);
if (failure) { return failure; }
buffer = '';
state = PATH_START;
if (stateOverride) { return; }
continue;
} else {
2021-10-29 14:30:00 +08:00
if (chr == '[') { seenBracket = true; }
else if (chr == ']') { seenBracket = false; }
buffer += chr;
} break;
case PORT:
2021-10-29 14:30:00 +08:00
if (exec(DIGIT, chr)) {
buffer += chr;
} else if (
2021-10-29 14:30:00 +08:00
chr == EOF || chr == '/' || chr == '?' || chr == '#' ||
(chr == '\\' && isSpecial(url)) ||
stateOverride
) {
if (buffer != '') {
2021-10-29 14:30:00 +08:00
var port = parseInt$1(buffer, 10);
if (port > 0xFFFF) { return INVALID_PORT; }
url.port = (isSpecial(url) && port === specialSchemes[url.scheme]) ? null : port;
buffer = '';
}
if (stateOverride) { return; }
state = PATH_START;
continue;
} else { return INVALID_PORT; }
break;
case FILE:
url.scheme = 'file';
2021-10-29 14:30:00 +08:00
if (chr == '/' || chr == '\\') { state = FILE_SLASH; }
else if (base && base.scheme == 'file') {
2021-10-29 14:30:00 +08:00
if (chr == EOF) {
url.host = base.host;
2021-10-29 14:30:00 +08:00
url.path = arraySlice$1(base.path);
url.query = base.query;
2021-10-29 14:30:00 +08:00
} else if (chr == '?') {
url.host = base.host;
2021-10-29 14:30:00 +08:00
url.path = arraySlice$1(base.path);
url.query = '';
state = QUERY;
2021-10-29 14:30:00 +08:00
} else if (chr == '#') {
url.host = base.host;
2021-10-29 14:30:00 +08:00
url.path = arraySlice$1(base.path);
url.query = base.query;
url.fragment = '';
state = FRAGMENT;
} else {
2021-10-29 14:30:00 +08:00
if (!startsWithWindowsDriveLetter(join(arraySlice$1(codePoints, pointer), ''))) {
url.host = base.host;
2021-10-29 14:30:00 +08:00
url.path = arraySlice$1(base.path);
shortenURLsPath(url);
}
state = PATH;
continue;
}
} else {
state = PATH;
continue;
} break;
case FILE_SLASH:
2021-10-29 14:30:00 +08:00
if (chr == '/' || chr == '\\') {
state = FILE_HOST;
break;
}
2021-10-29 14:30:00 +08:00
if (base && base.scheme == 'file' && !startsWithWindowsDriveLetter(join(arraySlice$1(codePoints, pointer), ''))) {
if (isWindowsDriveLetter(base.path[0], true)) { push(url.path, base.path[0]); }
else { url.host = base.host; }
}
state = PATH;
continue;
case FILE_HOST:
2021-10-29 14:30:00 +08:00
if (chr == EOF || chr == '/' || chr == '\\' || chr == '?' || chr == '#') {
if (!stateOverride && isWindowsDriveLetter(buffer)) {
state = PATH;
} else if (buffer == '') {
url.host = '';
if (stateOverride) { return; }
state = PATH_START;
} else {
failure = parseHost(url, buffer);
if (failure) { return failure; }
if (url.host == 'localhost') { url.host = ''; }
if (stateOverride) { return; }
buffer = '';
state = PATH_START;
} continue;
2021-10-29 14:30:00 +08:00
} else { buffer += chr; }
break;
case PATH_START:
if (isSpecial(url)) {
state = PATH;
2021-10-29 14:30:00 +08:00
if (chr != '/' && chr != '\\') { continue; }
} else if (!stateOverride && chr == '?') {
url.query = '';
state = QUERY;
2021-10-29 14:30:00 +08:00
} else if (!stateOverride && chr == '#') {
url.fragment = '';
state = FRAGMENT;
2021-10-29 14:30:00 +08:00
} else if (chr != EOF) {
state = PATH;
2021-10-29 14:30:00 +08:00
if (chr != '/') { continue; }
} break;
case PATH:
if (
2021-10-29 14:30:00 +08:00
chr == EOF || chr == '/' ||
(chr == '\\' && isSpecial(url)) ||
(!stateOverride && (chr == '?' || chr == '#'))
) {
if (isDoubleDot(buffer)) {
shortenURLsPath(url);
2021-10-29 14:30:00 +08:00
if (chr != '/' && !(chr == '\\' && isSpecial(url))) {
push(url.path, '');
}
} else if (isSingleDot(buffer)) {
2021-10-29 14:30:00 +08:00
if (chr != '/' && !(chr == '\\' && isSpecial(url))) {
push(url.path, '');
}
} else {
if (url.scheme == 'file' && !url.path.length && isWindowsDriveLetter(buffer)) {
if (url.host) { url.host = ''; }
2021-10-29 14:30:00 +08:00
buffer = charAt(buffer, 0) + ':'; // normalize windows drive letter
}
2021-10-29 14:30:00 +08:00
push(url.path, buffer);
}
buffer = '';
2021-10-29 14:30:00 +08:00
if (url.scheme == 'file' && (chr == EOF || chr == '?' || chr == '#')) {
while (url.path.length > 1 && url.path[0] === '') {
2021-10-29 14:30:00 +08:00
shift(url.path);
}
}
2021-10-29 14:30:00 +08:00
if (chr == '?') {
url.query = '';
state = QUERY;
2021-10-29 14:30:00 +08:00
} else if (chr == '#') {
url.fragment = '';
state = FRAGMENT;
}
} else {
2021-10-29 14:30:00 +08:00
buffer += percentEncode(chr, pathPercentEncodeSet);
} break;
2020-01-17 14:55:39 +08:00
case CANNOT_BE_A_BASE_URL_PATH:
2021-10-29 14:30:00 +08:00
if (chr == '?') {
url.query = '';
state = QUERY;
2021-10-29 14:30:00 +08:00
} else if (chr == '#') {
url.fragment = '';
state = FRAGMENT;
2021-10-29 14:30:00 +08:00
} else if (chr != EOF) {
url.path[0] += percentEncode(chr, C0ControlPercentEncodeSet);
} break;
2021-09-01 10:47:40 +08:00
case QUERY:
2021-10-29 14:30:00 +08:00
if (!stateOverride && chr == '#') {
url.fragment = '';
state = FRAGMENT;
2021-10-29 14:30:00 +08:00
} else if (chr != EOF) {
if (chr == "'" && isSpecial(url)) { url.query += '%27'; }
else if (chr == '#') { url.query += '%23'; }
else { url.query += percentEncode(chr, C0ControlPercentEncodeSet); }
} break;
2021-09-01 10:47:40 +08:00
case FRAGMENT:
2021-10-29 14:30:00 +08:00
if (chr != EOF) { url.fragment += percentEncode(chr, fragmentPercentEncodeSet); }
break;
}
pointer++;
2020-01-17 14:55:39 +08:00
}
};
// `URL` constructor
// https://url.spec.whatwg.org/#url-class
var URLConstructor = function URL(url /* , base */) {
2021-10-29 14:30:00 +08:00
var that = anInstance(this, URLPrototype);
var base = arguments.length > 1 ? arguments[1] : undefined;
2021-10-29 14:30:00 +08:00
var urlString = toString_1(url);
var state = setInternalState(that, { type: 'URL' });
var baseState, failure;
if (base !== undefined) {
2021-10-29 14:30:00 +08:00
try {
baseState = getInternalURLState(base);
} catch (error) {
failure = parseURL(baseState = {}, toString_1(base));
if (failure) { throw TypeError$1(failure); }
}
2021-09-01 10:47:40 +08:00
}
failure = parseURL(state, urlString, null, baseState);
2021-10-29 14:30:00 +08:00
if (failure) { throw TypeError$1(failure); }
var searchParams = state.searchParams = new URLSearchParams$1();
var searchParamsState = getInternalSearchParamsState(searchParams);
searchParamsState.updateSearchParams(state.query);
searchParamsState.updateURL = function () {
2021-10-29 14:30:00 +08:00
state.query = toString_1(searchParams) || null;
};
if (!descriptors) {
2021-10-29 14:30:00 +08:00
that.href = functionCall(serializeURL, that);
that.origin = functionCall(getOrigin, that);
that.protocol = functionCall(getProtocol, that);
that.username = functionCall(getUsername, that);
that.password = functionCall(getPassword, that);
that.host = functionCall(getHost, that);
that.hostname = functionCall(getHostname, that);
that.port = functionCall(getPort, that);
that.pathname = functionCall(getPathname, that);
that.search = functionCall(getSearch, that);
that.searchParams = functionCall(getSearchParams, that);
that.hash = functionCall(getHash, that);
}
};
2020-01-17 14:55:39 +08:00
var URLPrototype = URLConstructor.prototype;
2020-01-17 14:55:39 +08:00
var serializeURL = function () {
var url = getInternalURLState(this);
var scheme = url.scheme;
var username = url.username;
var password = url.password;
var host = url.host;
var port = url.port;
var path = url.path;
var query = url.query;
var fragment = url.fragment;
var output = scheme + ':';
if (host !== null) {
output += '//';
if (includesCredentials(url)) {
output += username + (password ? ':' + password : '') + '@';
}
output += serializeHost(host);
if (port !== null) { output += ':' + port; }
} else if (scheme == 'file') { output += '//'; }
2021-10-29 14:30:00 +08:00
output += url.cannotBeABaseURL ? path[0] : path.length ? '/' + join(path, '/') : '';
if (query !== null) { output += '?' + query; }
if (fragment !== null) { output += '#' + fragment; }
return output;
};
2020-01-17 14:55:39 +08:00
var getOrigin = function () {
var url = getInternalURLState(this);
var scheme = url.scheme;
var port = url.port;
if (scheme == 'blob') { try {
return new URLConstructor(scheme.path[0]).origin;
} catch (error) {
return 'null';
} }
if (scheme == 'file' || !isSpecial(url)) { return 'null'; }
return scheme + '://' + serializeHost(url.host) + (port !== null ? ':' + port : '');
};
2020-01-17 14:55:39 +08:00
var getProtocol = function () {
return getInternalURLState(this).scheme + ':';
};
2020-01-17 14:55:39 +08:00
var getUsername = function () {
return getInternalURLState(this).username;
};
2020-01-17 14:55:39 +08:00
var getPassword = function () {
return getInternalURLState(this).password;
};
2020-01-17 14:55:39 +08:00
var getHost = function () {
var url = getInternalURLState(this);
var host = url.host;
var port = url.port;
return host === null ? ''
: port === null ? serializeHost(host)
: serializeHost(host) + ':' + port;
};
2020-01-17 14:55:39 +08:00
var getHostname = function () {
var host = getInternalURLState(this).host;
return host === null ? '' : serializeHost(host);
};
2020-01-17 14:55:39 +08:00
var getPort = function () {
var port = getInternalURLState(this).port;
2021-10-29 14:30:00 +08:00
return port === null ? '' : toString_1(port);
};
2020-01-17 14:55:39 +08:00
var getPathname = function () {
var url = getInternalURLState(this);
var path = url.path;
2021-10-29 14:30:00 +08:00
return url.cannotBeABaseURL ? path[0] : path.length ? '/' + join(path, '/') : '';
};
2020-01-17 14:55:39 +08:00
var getSearch = function () {
var query = getInternalURLState(this).query;
return query ? '?' + query : '';
};
2020-01-17 14:55:39 +08:00
var getSearchParams = function () {
return getInternalURLState(this).searchParams;
};
2021-09-01 10:47:40 +08:00
var getHash = function () {
var fragment = getInternalURLState(this).fragment;
return fragment ? '#' + fragment : '';
};
var accessorDescriptor = function (getter, setter) {
return { get: getter, set: setter, configurable: true, enumerable: true };
2020-01-17 14:55:39 +08:00
};
if (descriptors) {
objectDefineProperties(URLPrototype, {
// `URL.prototype.href` accessors pair
// https://url.spec.whatwg.org/#dom-url-href
href: accessorDescriptor(serializeURL, function (href) {
var url = getInternalURLState(this);
2021-10-29 14:30:00 +08:00
var urlString = toString_1(href);
var failure = parseURL(url, urlString);
2021-10-29 14:30:00 +08:00
if (failure) { throw TypeError$1(failure); }
getInternalSearchParamsState(url.searchParams).updateSearchParams(url.query);
}),
// `URL.prototype.origin` getter
// https://url.spec.whatwg.org/#dom-url-origin
origin: accessorDescriptor(getOrigin),
// `URL.prototype.protocol` accessors pair
// https://url.spec.whatwg.org/#dom-url-protocol
protocol: accessorDescriptor(getProtocol, function (protocol) {
var url = getInternalURLState(this);
2021-10-29 14:30:00 +08:00
parseURL(url, toString_1(protocol) + ':', SCHEME_START);
}),
// `URL.prototype.username` accessors pair
// https://url.spec.whatwg.org/#dom-url-username
username: accessorDescriptor(getUsername, function (username) {
var url = getInternalURLState(this);
2021-10-29 14:30:00 +08:00
var codePoints = arrayFrom(toString_1(username));
if (cannotHaveUsernamePasswordPort(url)) { return; }
url.username = '';
for (var i = 0; i < codePoints.length; i++) {
url.username += percentEncode(codePoints[i], userinfoPercentEncodeSet);
}
}),
// `URL.prototype.password` accessors pair
// https://url.spec.whatwg.org/#dom-url-password
password: accessorDescriptor(getPassword, function (password) {
var url = getInternalURLState(this);
2021-10-29 14:30:00 +08:00
var codePoints = arrayFrom(toString_1(password));
if (cannotHaveUsernamePasswordPort(url)) { return; }
url.password = '';
for (var i = 0; i < codePoints.length; i++) {
url.password += percentEncode(codePoints[i], userinfoPercentEncodeSet);
}
}),
// `URL.prototype.host` accessors pair
// https://url.spec.whatwg.org/#dom-url-host
host: accessorDescriptor(getHost, function (host) {
var url = getInternalURLState(this);
if (url.cannotBeABaseURL) { return; }
2021-10-29 14:30:00 +08:00
parseURL(url, toString_1(host), HOST);
}),
// `URL.prototype.hostname` accessors pair
// https://url.spec.whatwg.org/#dom-url-hostname
hostname: accessorDescriptor(getHostname, function (hostname) {
var url = getInternalURLState(this);
if (url.cannotBeABaseURL) { return; }
2021-10-29 14:30:00 +08:00
parseURL(url, toString_1(hostname), HOSTNAME);
}),
// `URL.prototype.port` accessors pair
// https://url.spec.whatwg.org/#dom-url-port
port: accessorDescriptor(getPort, function (port) {
var url = getInternalURLState(this);
if (cannotHaveUsernamePasswordPort(url)) { return; }
2021-10-29 14:30:00 +08:00
port = toString_1(port);
if (port == '') { url.port = null; }
else { parseURL(url, port, PORT); }
}),
// `URL.prototype.pathname` accessors pair
// https://url.spec.whatwg.org/#dom-url-pathname
pathname: accessorDescriptor(getPathname, function (pathname) {
var url = getInternalURLState(this);
if (url.cannotBeABaseURL) { return; }
url.path = [];
2021-10-29 14:30:00 +08:00
parseURL(url, toString_1(pathname), PATH_START);
}),
// `URL.prototype.search` accessors pair
// https://url.spec.whatwg.org/#dom-url-search
search: accessorDescriptor(getSearch, function (search) {
var url = getInternalURLState(this);
2021-10-29 14:30:00 +08:00
search = toString_1(search);
if (search == '') {
url.query = null;
} else {
2021-10-29 14:30:00 +08:00
if ('?' == charAt(search, 0)) { search = stringSlice(search, 1); }
url.query = '';
parseURL(url, search, QUERY);
}
getInternalSearchParamsState(url.searchParams).updateSearchParams(url.query);
}),
// `URL.prototype.searchParams` getter
// https://url.spec.whatwg.org/#dom-url-searchparams
searchParams: accessorDescriptor(getSearchParams),
// `URL.prototype.hash` accessors pair
// https://url.spec.whatwg.org/#dom-url-hash
hash: accessorDescriptor(getHash, function (hash) {
var url = getInternalURLState(this);
2021-10-29 14:30:00 +08:00
hash = toString_1(hash);
if (hash == '') {
url.fragment = null;
return;
}
2021-10-29 14:30:00 +08:00
if ('#' == charAt(hash, 0)) { hash = stringSlice(hash, 1); }
url.fragment = '';
parseURL(url, hash, FRAGMENT);
})
});
2020-01-17 14:55:39 +08:00
}
// `URL.prototype.toJSON` method
// https://url.spec.whatwg.org/#dom-url-tojson
redefine(URLPrototype, 'toJSON', function toJSON() {
2021-10-29 14:30:00 +08:00
return functionCall(serializeURL, this);
}, { enumerable: true });
2021-09-22 10:28:02 +08:00
// `URL.prototype.toString` method
// https://url.spec.whatwg.org/#URL-stringification-behavior
redefine(URLPrototype, 'toString', function toString() {
2021-10-29 14:30:00 +08:00
return functionCall(serializeURL, this);
}, { enumerable: true });
if (NativeURL) {
var nativeCreateObjectURL = NativeURL.createObjectURL;
var nativeRevokeObjectURL = NativeURL.revokeObjectURL;
// `URL.createObjectURL` method
// https://developer.mozilla.org/en-US/docs/Web/API/URL/createObjectURL
2021-10-29 14:30:00 +08:00
if (nativeCreateObjectURL) { redefine(URLConstructor, 'createObjectURL', functionBindContext(nativeCreateObjectURL, NativeURL)); }
// `URL.revokeObjectURL` method
// https://developer.mozilla.org/en-US/docs/Web/API/URL/revokeObjectURL
2021-10-29 14:30:00 +08:00
if (nativeRevokeObjectURL) { redefine(URLConstructor, 'revokeObjectURL', functionBindContext(nativeRevokeObjectURL, NativeURL)); }
2020-01-17 14:55:39 +08:00
}
setToStringTag(URLConstructor, 'URL');
2020-01-17 14:55:39 +08:00
_export({ global: true, forced: !nativeUrl, sham: !descriptors }, {
URL: URLConstructor
2020-01-17 14:55:39 +08:00
});
// `URL.prototype.toJSON` method
// https://url.spec.whatwg.org/#dom-url-tojson
_export({ target: 'URL', proto: true, enumerable: true }, {
toJSON: function toJSON() {
2021-10-29 14:30:00 +08:00
return functionCall(URL.prototype.toString, this);
2020-01-17 14:55:39 +08:00
}
});
var features = path;
2020-01-17 14:55:39 +08:00
var coreJs = features;
2020-01-17 14:55:39 +08:00
/*
* Copyright [2019] [Doric.Pub]
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
var ProxyPolyfill = /** @class */ (function () {
function ProxyPolyfill(target, handler) {
this.__target__ = target;
this.__handler__ = handler;
this.defineProps();
return target;
}
ProxyPolyfill.prototype.defineProps = function () {
var _this = this;
var keys = Object.keys(this.__target__);
keys.forEach(function (property) {
if (Object.getOwnPropertyDescriptor(_this.__target__, property) !== undefined) {
return;
}
Object.defineProperty(_this, property, {
get: function () {
_this.defineProps();
if (_this.__handler__.get) {
return _this.__handler__.get(_this.__target__, property, _this);
}
else {
return _this.__target__[property];
}
},
set: function (value) {
_this.defineProps();
if (_this.__handler__.set) {
_this.__handler__.set(_this.__target__, property, value, property);
}
else {
_this.__target__[property] = value;
}
},
enumerable: true,
configurable: true,
});
});
};
return ProxyPolyfill;
}());
2021-03-02 10:28:33 +08:00
var global$1 = Function('return this')();
global$1.Proxy = ProxyPolyfill;
2020-01-17 14:55:39 +08:00
exports.Context = Context;
exports.__moduleExports = coreJs;
exports.__require__ = __require__;
exports.allContexts = allContexts;
2020-01-17 14:55:39 +08:00
exports.jsCallEntityMethod = jsCallEntityMethod;
exports.jsCallReject = jsCallReject;
exports.jsCallResolve = jsCallResolve;
exports.jsCallbackTimer = jsCallbackTimer;
exports.jsHookAfterNativeCall = jsHookAfterNativeCall;
2020-01-17 14:55:39 +08:00
exports.jsObtainContext = jsObtainContext;
exports.jsObtainEntry = jsObtainEntry;
exports.jsRegisterModule = jsRegisterModule;
exports.jsReleaseContext = jsReleaseContext;
exports.pureCallEntityMethod = pureCallEntityMethod;
2020-01-17 14:55:39 +08:00
2021-02-19 17:33:10 +08:00
Object.defineProperty(exports, '__esModule', { value: true });
2020-01-17 14:55:39 +08:00
return exports;
2021-10-29 14:30:00 +08:00
})({});