edge/pkg/sdk/client/dist/client.js.map

8 lines
1.5 MiB
Plaintext
Raw Normal View History

{
"version": 3,
"sources": ["../../../../node_modules/core-js/internals/global.js", "../../../../node_modules/core-js/internals/fails.js", "../../../../node_modules/core-js/internals/descriptors.js", "../../../../node_modules/core-js/internals/function-bind-native.js", "../../../../node_modules/core-js/internals/function-call.js", "../../../../node_modules/core-js/internals/object-property-is-enumerable.js", "../../../../node_modules/core-js/internals/create-property-descriptor.js", "../../../../node_modules/core-js/internals/function-uncurry-this.js", "../../../../node_modules/core-js/internals/classof-raw.js", "../../../../node_modules/core-js/internals/indexed-object.js", "../../../../node_modules/core-js/internals/is-null-or-undefined.js", "../../../../node_modules/core-js/internals/require-object-coercible.js", "../../../../node_modules/core-js/internals/to-indexed-object.js", "../../../../node_modules/core-js/internals/document-all.js", "../../../../node_modules/core-js/internals/is-callable.js", "../../../../node_modules/core-js/internals/is-object.js", "../../../../node_modules/core-js/internals/get-built-in.js", "../../../../node_modules/core-js/internals/object-is-prototype-of.js", "../../../../node_modules/core-js/internals/engine-user-agent.js", "../../../../node_modules/core-js/internals/engine-v8-version.js", "../../../../node_modules/core-js/internals/symbol-constructor-detection.js", "../../../../node_modules/core-js/internals/use-symbol-as-uid.js", "../../../../node_modules/core-js/internals/is-symbol.js", "../../../../node_modules/core-js/internals/try-to-string.js", "../../../../node_modules/core-js/internals/a-callable.js", "../../../../node_modules/core-js/internals/get-method.js", "../../../../node_modules/core-js/internals/ordinary-to-primitive.js", "../../../../node_modules/core-js/internals/is-pure.js", "../../../../node_modules/core-js/internals/define-global-property.js", "../../../../node_modules/core-js/internals/shared-store.js", "../../../../node_modules/core-js/internals/shared.js", "../../../../node_modules/core-js/internals/to-object.js", "../../../../node_modules/core-js/internals/has-own-property.js", "../../../../node_modules/core-js/internals/uid.js", "../../../../node_modules/core-js/internals/well-known-symbol.js", "../../../../node_modules/core-js/internals/to-primitive.js", "../../../../node_modules/core-js/internals/to-property-key.js", "../../../../node_modules/core-js/internals/document-create-element.js", "../../../../node_modules/core-js/internals/ie8-dom-define.js", "../../../../node_modules/core-js/internals/object-get-own-property-descriptor.js", "../../../../node_modules/core-js/internals/v8-prototype-define-bug.js", "../../../../node_modules/core-js/internals/an-object.js", "../../../../node_modules/core-js/internals/object-define-property.js", "../../../../node_modules/core-js/internals/create-non-enumerable-property.js", "../../../../node_modules/core-js/internals/function-name.js", "../../../../node_modules/core-js/internals/inspect-source.js", "../../../../node_modules/core-js/internals/weak-map-basic-detection.js", "../../../../node_modules/core-js/internals/shared-key.js", "../../../../node_modules/core-js/internals/hidden-keys.js", "../../../../node_modules/core-js/internals/internal-state.js", "../../../../node_modules/core-js/internals/make-built-in.js", "../../../../node_modules/core-js/internals/define-built-in.js", "../../../../node_modules/core-js/internals/math-trunc.js", "../../../../node_modules/core-js/internals/to-integer-or-infinity.js", "../../../../node_modules/core-js/internals/to-absolute-index.js", "../../../../node_modules/core-js/internals/to-length.js", "../../../../node_modules/core-js/internals/length-of-array-like.js", "../../../../node_modules/core-js/internals/array-includes.js", "../../../../node_modules/core-js/internals/object-keys-internal.js", "../../../../node_modules/core-js/internals/enum-bug-keys.js", "../../../../node_modules/core-js/internals/object-get-own-property-names.js", "../../../../node_modules/core-js/internals/object-get-own-prope
"sourcesContent": ["var check = function (it) {\n return it && it.Math == Math && it;\n};\n\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nmodule.exports =\n // eslint-disable-next-line es/no-global-this -- safe\n check(typeof globalThis == 'object' && globalThis) ||\n check(typeof window == 'object' && window) ||\n // eslint-disable-next-line no-restricted-globals -- safe\n check(typeof self == 'object' && self) ||\n check(typeof global == 'object' && global) ||\n // eslint-disable-next-line no-new-func -- fallback\n (function () { return this; })() || Function('return this')();\n", "module.exports = function (exec) {\n try {\n return !!exec();\n } catch (error) {\n return true;\n }\n};\n", "var fails = require('../internals/fails');\n\n// Detect IE8's incomplete defineProperty implementation\nmodule.exports = !fails(function () {\n // eslint-disable-next-line es/no-object-defineproperty -- required for testing\n return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;\n});\n", "var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n // eslint-disable-next-line es/no-function-prototype-bind -- safe\n var test = (function () { /* empty */ }).bind();\n // eslint-disable-next-line no-prototype-builtins -- safe\n return typeof test != 'function' || test.hasOwnProperty('prototype');\n});\n", "var NATIVE_BIND = require('../internals/function-bind-native');\n\nvar call = Function.prototype.call;\n\nmodule.exports = NATIVE_BIND ? call.bind(call) : function () {\n return call.apply(call, arguments);\n};\n", "'use strict';\nvar $propertyIsEnumerable = {}.propertyIsEnumerable;\n// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// Nashorn ~ JDK8 bug\nvar NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);\n\n// `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n var descriptor = getOwnPropertyDescriptor(this, V);\n return !!descriptor && descriptor.enumerable;\n} : $propertyIsEnumerable;\n", "module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n", "var NATIVE_BIND = require('../internals/function-bind-native');\n\nvar FunctionPrototype = Function.prototype;\nvar call = FunctionPrototype.call;\nvar uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);\n\nmodule.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {\n return function () {\n return call.apply(fn, arguments);\n };\n};\n", "var uncurryThis = require('../internals/function-uncurry-this');\n\nvar toString = uncurryThis({}.toString);\nvar stringSlice = uncurryThis(''.slice);\n\nmodule.exports = function (it) {\n return stringSlice(toString(it), 8, -1);\n};\n", "var uncurryThis = require('../internals/function-uncurry-this');\nvar fails = require('../internals/fails');\nvar classof = require('../internals/classof-raw');\n\nvar $Object = Object;\nvar split = uncurryThis(''.split);\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nmodule.exports = fails(function () {\n // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346\n // eslint-disable-next-line no-prototype-builtins -- safe\n return !$Object('z').propertyIsEnumerable(0);\n}) ? function (it) {\n return classof(it) == 'String' ? split(it, '') : $Object(it);\n} : $Object;\n", "// we can't use just `it == null` since of `document.all` special case\n// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec\nmodule.exports = function (it) {\n return it === null || it === undefined;\n};\n", "var isNullOrUndefined = require('../internals/is-null-or-undefined');\n\nvar $TypeError = TypeError;\n\n// `RequireObjectCoercible` abstract operation
"mappings": "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
"names": ["V", "global", "global", "process", "Deno", "V", "P", "global", "global", "global", "Symbol", "global", "document", "P", "P", "global", "WeakMap", "global", "TypeError", "WeakMap", "state", "state", "x", "n", "i", "i", "global", "activeXDocument", "k", "n", "global", "Symbol", "Symbol", "C", "self", "$", "global", "TypeError", "P", "V", "Symbol", "$", "$", "i", "j", "$", "$", "$", "global", "Symbol", "C", "a", "b", "$", "global", "Error", "RangeError", "ReferenceError", "SyntaxError", "TypeError", "$", "$", "$", "k", "$", "A", "n", "i", "k", "E", "P", "$", "$", "$", "$", "$", "$", "self", "$", "$", "$", "A", "$", "A", "$", "$", "$", "$", "$", "$", "state", "$", "$", "$", "$", "$", "i", "self", "i", "$", "$", "$", "$", "k", "n", "$", "i", "j", "$", "a", "b", "x", "y", "$", "A", "k", "C", "A", "k", "$", "global", "$", "A", "$", "k", "A", "$", "k", "j", "C", "A", "k", "$", "c", "global", "Array", "RangeError", "key", "i", "ArrayBuffer", "DataView", "j", "$", "global", "ArrayBuffer", "global", "Int8Array", "Uint8ClampedArray", "TypeError", "isView", "state", "C", "TypedArray", "$", "C", "S", "$", "ArrayBuffer", "DataView", "$", "$", "$", "$", "$", "n", "S", "$", "$", "$", "C", "i", "$", "P", "$", "global", "global", "$", "i", "$", "global", "define", "state", "Map", "x", "n", "$", "x", "n", "$", "x", "n", "$", "x", "n", "x", "n", "$", "x", "n", "$", "x", "n", "x", "n", "$", "E", "x", "t", "$", "n", "x", "a", "$", "$", "i", "$", "x", "y", "x", "$", "$", "$", "x", "$", "$", "E", "x", "n", "$", "x", "n", "a", "b", "$", "$", "global", "TypeError", "Number", "n", "j", "$", "global", "isFinite", "$", "$", "$", "isNaN", "$", "$", "$", "global", "Symbol", "parseFloat", "$", "parseFloat", "global", "Symbol", "parseInt", "S", "$", "parseInt", "$", "x", "f", "s", "m", "e", "c", "d", "l", "n", "w", "$", "x", "n", "x2", "c", "c2", "s", "t", "e", "z", "j", "k", "$", "A", "B", "T", "S", "j", "$", "$", "global", "$", "P", "$", "$", "$", "__defineSetter__", "P", "i", "$", "$", "$", "k", "v", "$", "$", "$", "$", "$", "x", "y", "$", "$", "$", "$", "$", "$", "P", "$", "P", "$", "$", "$", "$", "$", "$", "global", "process", "Function", "String", "global", "MutationObserver", "document", "process", "Promise", "parent", "a", "b", "global", "global", "C", "$", "global", "TypeError", "document", "process", "state", "Promise", "C", "$", "C", "$", "$", "C", "$", "r", "C", "x", "$", "x", "$", "C", "$", "C", "$", "C", "x", "e", "$", "$", "$", "$", "$", "$", "$", "$", "$", "$", "$", "$", "V", "$", "$", "global", "R", "global", "global", "global", "global", "SyntaxError", "index", "RegExp", "state", "state", "i", "$", "global", "RegExp", "key", "$", "S", "R", "R", "Set", "$", "S", "k", "S", "$", "$", "$", "x", "i", "$", "state", "S", "R", "S", "S", "A", "n", "$", "state", "R", "S", "C", "$", "$", "$", "i", "$", "m", "n", "f", "_", "S", "global", "i", "j", "$", "S", "S", "C", "p", "A", "z", "e", "i", "$", "$", "$", "$", "$", "$", "$", "S", "$", "$", "$", "$", "$", "$", "$", "$", "$", "$", "$", "$", "$", "global", "ArrayBuffer", "Int8Array", "C", "i", "$", "global", "RangeError", "ArrayBuffer", "DataView", "C", "Int8Array", "Uint8Array", "Uint8ClampedArray", "k", "global", "Uint8Array", "global", "RangeError", "Int8Array", "C", "global", "a", "b", "x", "y", "C", "global", "Int8Array", "A", "global", "Uint8Array", "$", "unescape", "state", "define", "global", "WeakMap", "state", "WeakSet", "$", "global", "$", "global", "global", "global", "COLLECTION_NAME", "$", "Error", "key", "$", "global", "Error", "$", "global", "global", "Function", "$", "global", "$", "global", "process", "$", "global", "self", "global", "$", "global", "Object", "Array", "Date", "Error", "RangeError", "ReferenceError", "SyntaxError", "TypeError", "Map", "Set", "C", "i", "v", "k", "value", "$", "global", "$", "global", "setTimeout", "k", "n", "i", "m", "t", "$", "global", "RegExp", "TypeError", "decodeURIComponent", "encodeURIComponent", "state", "URLSearchParams", "a", "b", "fetch", "$", "global", "URLSearchParams", "TypeError", "parseInt", "state", "i", "URL", "$", "URL",
}