{"version":3,"sources":["/../../node_modules/core-js/internals/whitespaces.js","/../../node_modules/core-js/internals/string-trim.js"],"sourcesContent":["'use strict';\n// a string of all valid unicode whitespaces\nmodule.exports = '\\u0009\\u000A\\u000B\\u000C\\u000D\\u0020\\u00A0\\u1680\\u2000\\u2001\\u2002' +\n '\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028\\u2029\\uFEFF';\n","'use strict';\nvar uncurryThis = require('../internals/function-uncurry-this');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\nvar toString = require('../internals/to-string');\nvar whitespaces = require('../internals/whitespaces');\n\nvar replace = uncurryThis(''.replace);\nvar ltrim = RegExp('^[' + whitespaces + ']+');\nvar rtrim = RegExp('(^|[^' + whitespaces + '])[' + whitespaces + ']+$');\n\n// `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation\nvar createMethod = function (TYPE) {\n return function ($this) {\n var string = toString(requireObjectCoercible($this));\n if (TYPE & 1) string = replace(string, ltrim, '');\n if (TYPE & 2) string = replace(string, rtrim, '$1');\n return string;\n };\n};\n\nmodule.exports = {\n // `String.prototype.{ trimLeft, trimStart }` methods\n // https://tc39.es/ecma262/#sec-string.prototype.trimstart\n start: createMethod(1),\n // `String.prototype.{ trimRight, trimEnd }` methods\n // https://tc39.es/ecma262/#sec-string.prototype.trimend\n end: createMethod(2),\n // `String.prototype.trim` method\n // https://tc39.es/ecma262/#sec-string.prototype.trim\n trim: createMethod(3)\n};\n"],"names":[],"mappings":"8LAAA,CAAA,GAAA,CAAA,MAAA,CAAA,CAEA,CAAA,CAAO,OAAO,CAAG,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,KAAA,CAAA,KAAA,CAAA,KAAA,CAAA,CAAA,iCCFjB,CAAA,GAAA,CAAA,MAAA,CAAA,CACA,GAAA,CAAI,CAAA,CAAc,CAAA,CAAA,CAAA,QAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CACd,CAAA,CAAyB,CAAA,CAAA,CAAA,QAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CACzB,CAAA,CAAW,CAAA,CAAA,CAAA,QAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CACX,CAAA,CAAc,CAAA,CAAA,CAAA,QAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAEd,CAAA,CAAU,CAAA,CAAY,CAAA,CAAA,CAAG,OAAO,CAAA,CAChC,CAAA,CAAQ,MAAA,CAAO,CAAA,CAAA,CAAA,CAAA,CAAO,CAAA,CAAc,CAAA,CAAA,CAAA,CAAA,CAAA,CACpC,CAAA,CAAQ,MAAA,CAAO,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAU,CAAA,CAAc,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAA,CAAc,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAG7D,CAAA,CAAe,QAAA,CAAU,CAAI,CAAA,CAC/B,MAAA,CAAO,QAAA,CAAU,CAAK,CAAA,CACpB,GAAA,CAAI,CAAA,CAAS,CAAA,CAAS,CAAA,CAAuB,CAAA,CAAA,CAAA,CAG7C,MAAA,CAFW,CAAA,CAAP,CAAA,CAAA,CAAU,CAAA,CAAA,CAAS,CAAA,CAAQ,CAAA,CAAQ,CAAA,CAAO,CAAA,CAAA,CAAE,CAAA,CACrC,CAAA,CAAP,CAAA,CAAA,CAAU,CAAA,CAAA,CAAS,CAAA,CAAQ,CAAA,CAAQ,CAAA,CAAO,CAAA,CAAA,CAAA,CAAA,CAAI,CAAA,CAC3C,CAAA,CACT,CAAA,CACF,CAAA,CAEA,CAAA,CAAO,OAAO,CAAG,CAGf,KAAA,CAAO,CAAA,CAAa,CAAA,CAAA,CAGpB,GAAA,CAAK,CAAA,CAAa,CAAA,CAAA,CAGlB,IAAA,CAAM,CAAA,CAAa,CAAA,CACrB,CAAA,CAAA"}