{"version":3,"file":"2839.24ee2c5e66ef2fe0de3b.js","mappings":"qHAKA,IAAIA,EAFJC,OAAOC,eAAeC,EAAS,aAAc,CAAEC,OAAO,IACtDD,EAAQE,WAAaF,EAAQH,cAAW,EAExC,SAAWA,GACPA,EAAgB,MAAI,QACpBA,EAAkB,QAAI,UACtBA,EAAe,KAAI,OACnBA,EAAgB,MAAI,OACvB,CALD,CAKGA,IAAaG,EAAQH,SAAWA,EAAW,CAAC,IAE/CG,EAAQE,WADYC,GAA2D,QAApDA,aAA6B,EAASA,EAAEC,O,iBCXnE,IAkBMC,EAlBFC,EAAI,EAAQ,OACZC,EAAc,EAAQ,OACtBC,EAA2B,WAC3BC,EAAW,EAAQ,OACnBC,EAAW,EAAQ,OACnBC,EAAa,EAAQ,OACrBC,EAAyB,EAAQ,OACjCC,EAAuB,EAAQ,OAC/BC,EAAU,EAAQ,OAGlBC,EAAiBR,EAAY,GAAGS,UAChCC,EAAQV,EAAY,GAAGU,OACvBC,EAAMC,KAAKD,IAEXE,EAA0BP,EAAqB,YASnDP,EAAE,CAAEe,OAAQ,SAAUC,OAAO,EAAMC,UAPXT,IAAYM,IAC9Bf,EAAaG,EAAyBgB,OAAOC,UAAW,YACrDpB,IAAeA,EAAWqB,WAK8BN,IAA2B,CAC1FJ,SAAU,SAAkBW,GAC1B,IAAIC,EAAOlB,EAASE,EAAuBiB,OAC3ClB,EAAWgB,GACX,IAAIG,EAAcC,UAAUC,OAAS,EAAID,UAAU,QAAKE,EACpDC,EAAMN,EAAKI,OACXG,OAAsBF,IAAhBH,EAA4BI,EAAMhB,EAAIT,EAASqB,GAAcI,GACnEE,EAAS1B,EAASiB,GACtB,OAAOZ,EACHA,EAAea,EAAMQ,EAAQD,GAC7BlB,EAAMW,EAAMO,EAAMC,EAAOJ,OAAQG,KAASC,CAChD,G","sources":["webpack://mattermost-webapp/../platform/types/lib/client4.js","webpack://mattermost-webapp/../node_modules/core-js/modules/es.string.ends-with.js"],"sourcesContent":["\"use strict\";\n// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.\n// See LICENSE.txt for license information.\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.isStatusOK = exports.LogLevel = void 0;\nvar LogLevel;\n(function (LogLevel) {\n LogLevel[\"Error\"] = \"ERROR\";\n LogLevel[\"Warning\"] = \"WARNING\";\n LogLevel[\"Info\"] = \"INFO\";\n LogLevel[\"Debug\"] = \"DEBUG\";\n})(LogLevel || (exports.LogLevel = LogLevel = {}));\nconst isStatusOK = (x) => (x === null || x === void 0 ? void 0 : x.status) === 'OK';\nexports.isStatusOK = isStatusOK;\n","'use strict';\nvar $ = require('../internals/export');\nvar uncurryThis = require('../internals/function-uncurry-this');\nvar getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar toLength = require('../internals/to-length');\nvar toString = require('../internals/to-string');\nvar notARegExp = require('../internals/not-a-regexp');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\nvar correctIsRegExpLogic = require('../internals/correct-is-regexp-logic');\nvar IS_PURE = require('../internals/is-pure');\n\n// eslint-disable-next-line es/no-string-prototype-endswith -- safe\nvar nativeEndsWith = uncurryThis(''.endsWith);\nvar slice = uncurryThis(''.slice);\nvar min = Math.min;\n\nvar CORRECT_IS_REGEXP_LOGIC = correctIsRegExpLogic('endsWith');\n// https://github.com/zloirock/core-js/pull/702\nvar MDN_POLYFILL_BUG = !IS_PURE && !CORRECT_IS_REGEXP_LOGIC && !!function () {\n var descriptor = getOwnPropertyDescriptor(String.prototype, 'endsWith');\n return descriptor && !descriptor.writable;\n}();\n\n// `String.prototype.endsWith` method\n// https://tc39.es/ecma262/#sec-string.prototype.endswith\n$({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG && !CORRECT_IS_REGEXP_LOGIC }, {\n endsWith: function endsWith(searchString /* , endPosition = @length */) {\n var that = toString(requireObjectCoercible(this));\n notARegExp(searchString);\n var endPosition = arguments.length > 1 ? arguments[1] : undefined;\n var len = that.length;\n var end = endPosition === undefined ? len : min(toLength(endPosition), len);\n var search = toString(searchString);\n return nativeEndsWith\n ? nativeEndsWith(that, search, end)\n : slice(that, end - search.length, end) === search;\n }\n});\n"],"names":["LogLevel","Object","defineProperty","exports","value","isStatusOK","x","status","descriptor","$","uncurryThis","getOwnPropertyDescriptor","toLength","toString","notARegExp","requireObjectCoercible","correctIsRegExpLogic","IS_PURE","nativeEndsWith","endsWith","slice","min","Math","CORRECT_IS_REGEXP_LOGIC","target","proto","forced","String","prototype","writable","searchString","that","this","endPosition","arguments","length","undefined","len","end","search"],"sourceRoot":""}