{"version":3,"file":"commons-app-string-multibyte.js.ec5dd97fe5de6d1fac04.js","mappings":"+GAAA,IAAIA,EAAc,EAAQ,MACtBC,EAAsB,EAAQ,MAC9BC,EAAW,EAAQ,MACnBC,EAAyB,EAAQ,MAEjCC,EAASJ,EAAY,GAAGI,QACxBC,EAAaL,EAAY,GAAGK,YAC5BC,EAAcN,EAAY,GAAGO,OAE7BC,EAAe,SAAUC,GAC3B,OAAO,SAAUC,EAAOC,GACtB,IAGIC,EAAOC,EAHPC,EAAIZ,EAASC,EAAuBO,IACpCK,EAAWd,EAAoBU,GAC/BK,EAAOF,EAAEG,OAEb,OAAIF,EAAW,GAAKA,GAAYC,EAAaP,EAAoB,QAAKS,GACtEN,EAAQP,EAAWS,EAAGC,IACP,OAAUH,EAAQ,OAAUG,EAAW,IAAMC,IACtDH,EAASR,EAAWS,EAAGC,EAAW,IAAM,OAAUF,EAAS,MAC3DJ,EACEL,EAAOU,EAAGC,GACVH,EACFH,EACEH,EAAYQ,EAAGC,EAAUA,EAAW,GACVF,EAAS,OAAlCD,EAAQ,OAAU,IAA0B,KACvD,CACF,EAEAO,EAAOC,QAAU,CAGfC,OAAQb,GAAa,GAGrBJ,OAAQI,GAAa,G","sources":["webpack://grfanclub-webview/./node_modules/core-js/internals/string-multibyte.js"],"sourcesContent":["var uncurryThis = require('../internals/function-uncurry-this');\nvar toIntegerOrInfinity = require('../internals/to-integer-or-infinity');\nvar toString = require('../internals/to-string');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nvar charAt = uncurryThis(''.charAt);\nvar charCodeAt = uncurryThis(''.charCodeAt);\nvar stringSlice = uncurryThis(''.slice);\n\nvar createMethod = function (CONVERT_TO_STRING) {\n return function ($this, pos) {\n var S = toString(requireObjectCoercible($this));\n var position = toIntegerOrInfinity(pos);\n var size = S.length;\n var first, second;\n if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;\n first = charCodeAt(S, position);\n return first < 0xD800 || first > 0xDBFF || position + 1 === size\n || (second = charCodeAt(S, position + 1)) < 0xDC00 || second > 0xDFFF\n ? CONVERT_TO_STRING\n ? charAt(S, position)\n : first\n : CONVERT_TO_STRING\n ? stringSlice(S, position, position + 2)\n : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;\n };\n};\n\nmodule.exports = {\n // `String.prototype.codePointAt` method\n // https://tc39.es/ecma262/#sec-string.prototype.codepointat\n codeAt: createMethod(false),\n // `String.prototype.at` method\n // https://github.com/mathiasbynens/String.prototype.at\n charAt: createMethod(true)\n};\n"],"names":["uncurryThis","toIntegerOrInfinity","toString","requireObjectCoercible","charAt","charCodeAt","stringSlice","slice","createMethod","CONVERT_TO_STRING","$this","pos","first","second","S","position","size","length","undefined","module","exports","codeAt"],"sourceRoot":""}