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

8 lines
1.6 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": ["require_global", "__commonJSMin", "exports", "module", "check", "it", "require_fails", "__commonJSMin", "exports", "module", "exec", "error", "require_descriptors", "__commonJSMin", "exports", "module", "fails", "require_function_bind_native", "__commonJSMin", "exports", "module", "fails", "test", "require_function_call", "__commonJSMin", "exports", "module", "NATIVE_BIND", "call", "require_object_property_is_enumerable", "__commonJSMin", "exports", "$propertyIsEnumerable", "getOwnPropertyDescriptor", "NASHORN_BUG", "V", "descriptor", "require_create_property_descriptor", "__commonJSMin", "exports", "module", "bitmap", "value", "require_function_uncurry_this", "__commonJSMin", "exports", "module", "NATIVE_BIND", "FunctionPrototype", "call", "uncurryThisWithBind", "fn", "require_classof_raw", "__commonJSMin", "exports", "module", "uncurryThis", "toString", "stringSlice", "it", "require_indexed_object", "__commonJSMin", "exports", "module", "uncurryThis", "fails", "classof", "$Object", "split", "it", "require_is_null_or_undefined", "__commonJSMin", "exports", "module", "it", "require_require_object_coercible", "__commonJSMin", "exports", "module", "isNullOrUndefined", "$TypeError", "it", "require_to_indexed_object", "__commonJSMin", "exports", "module", "IndexedObject", "requireObjectCoercible", "it", "require_document_all", "__commonJSMin", "exports", "module", "documentAll", "IS_HTMLDDA", "require_is_callable", "__commonJSMin", "exports", "module", "$documentAll", "documentAll", "argument", "require_is_object", "__commonJSMin", "exports", "module", "isCallable", "$documentAll", "documentAll", "it", "require_get_built_in", "__commonJSMin", "exports", "module", "global", "isCallable", "aFunction", "argument", "namespace", "method", "require_object_is_prototype_of", "__commonJSMin", "exports", "module", "uncurryThis", "require_engine_user_agent", "__commonJSMin", "exports", "module", "require_engine_v8_version", "__commonJSMin", "exports", "module", "global", "userAgent", "process", "Deno", "versions", "v8", "match", "version", "require_symbol_constructor_detection", "__commonJSMin", "exports", "module", "V8_VERSION", "fails", "symbol", "require_use_symbol_as_uid", "__commonJSMin", "exports", "module", "NATIVE_SYMBOL", "require_is_symbol", "__commonJSMin", "exports", "module", "getBuiltIn", "isCallable", "isPrototypeOf", "USE_SYMBOL_AS_UID", "$Object", "it", "$Symbol", "require_try_to_string", "__commonJSMin", "exports", "module", "$String", "argument", "error", "require_a_callable", "__commonJSMin", "exports", "module", "isCallable", "tryToString", "$TypeError", "argument", "require_get_method", "__commonJSMin", "exports", "module", "aCallable", "isNullOrUndefined", "V", "P", "func", "require_ordinary_to_primitive", "__commonJSMin", "exports", "module", "call", "isCallable", "isObject", "$TypeError", "input", "pref", "fn", "val", "require_is_pure", "__commonJSMin", "exports", "module", "require_define_global_property", "__commonJSMin", "exports", "module", "global", "defineProperty", "key", "value", "error", "require_shared_store", "__commonJSMin", "exports", "module", "global", "defineGlobalProperty", "SHARED", "store", "require_shared", "__commonJSMin", "exports", "module", "IS_PURE", "store", "key", "value", "require_to_object", "__commonJSMin", "exports", "module", "requireObjectCoercible", "$Object", "argument", "require_has_own_property", "__commonJSMin", "exports", "module", "uncurryThis", "toObject", "hasOwnProperty", "it", "key", "require_uid", "__commonJSMin", "exports", "module", "uncurryThis", "id", "postfix", "toString", "key", "require_well_known_symbol", "__commonJSMin", "exports", "module", "global", "shared", "hasOwn", "uid", "NATIVE_SYMBOL", "USE_SYMBOL_AS_UID", "Symbol", "WellKnownSymbolsStore", "createWellKnownSymbol", "name", "require_to_primitive", "__commonJSMin", "exports", "module", "call", "isObject", "isSymbol", "getMethod", "ordinaryToPrimitive", "wellKnownSymbol", "$TypeError", "TO_PRIMITIVE", "input", "pref", "exoticToPrim", "result", "require_to_property_key", "__commonJSMin", "
}