{"version":3,"file":"base64Encoder-59oMo3x3.js","sources":["../../node_modules/@aws-amplify/core/dist/esm/utils/convert/base64/bytesToString.mjs","../../node_modules/@aws-amplify/core/dist/esm/utils/convert/base64/base64Encoder.mjs"],"sourcesContent":["// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nfunction bytesToString(input) {\n return Array.from(input, byte => String.fromCodePoint(byte)).join('');\n}\n\nexport { bytesToString };\n//# sourceMappingURL=bytesToString.mjs.map\n","import { getBtoa } from '../../globalHelpers/index.mjs';\nimport { bytesToString } from './bytesToString.mjs';\n\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nconst base64Encoder = {\n /**\n * Convert input to base64-encoded string\n * @param input - string to convert to base64\n * @param options - encoding options that can optionally produce a base64url string\n * @returns base64-encoded string\n */\n convert(input, options = {\n urlSafe: false,\n skipPadding: false,\n }) {\n const inputStr = typeof input === 'string' ? input : bytesToString(input);\n let encodedStr = getBtoa()(inputStr);\n // urlSafe char replacement and skipPadding options conform to the base64url spec\n // https://datatracker.ietf.org/doc/html/rfc4648#section-5\n if (options.urlSafe) {\n encodedStr = encodedStr.replace(/\\+/g, '-').replace(/\\//g, '_');\n }\n if (options.skipPadding) {\n encodedStr = encodedStr.replace(/=/g, '');\n }\n return encodedStr;\n },\n};\n\nexport { base64Encoder };\n//# sourceMappingURL=base64Encoder.mjs.map\n"],"names":["bytesToString","input","byte","base64Encoder","options","inputStr","encodedStr","getBtoa"],"mappings":"yCAEA,SAASA,EAAcC,EAAO,CAC1B,OAAO,MAAM,KAAKA,EAAOC,GAAQ,OAAO,cAAcA,CAAI,CAAC,EAAE,KAAK,EAAE,CACxE,CCCA,MAAMC,EAAgB,CAOlB,QAAQF,EAAOG,EAAU,CACrB,QAAS,GACT,YAAa,EAAA,EACd,CACC,MAAMC,EAAW,OAAOJ,GAAU,SAAWA,EAAQD,EAAcC,CAAK,EACpE,IAAAK,EAAaC,EAAQ,EAAEF,CAAQ,EAGnC,OAAID,EAAQ,UACRE,EAAaA,EAAW,QAAQ,MAAO,GAAG,EAAE,QAAQ,MAAO,GAAG,GAE9DF,EAAQ,cACKE,EAAAA,EAAW,QAAQ,KAAM,EAAE,GAErCA,CAAA,CAEf","x_google_ignoreList":[0,1]}