init
This commit is contained in:
+24
@@ -0,0 +1,24 @@
|
||||
"use strict";
|
||||
// utils/base64-browser
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.encodeBase64 = exports.decodeBase64 = void 0;
|
||||
const data_js_1 = require("./data.js");
|
||||
function decodeBase64(textData) {
|
||||
textData = atob(textData);
|
||||
const data = new Uint8Array(textData.length);
|
||||
for (let i = 0; i < textData.length; i++) {
|
||||
data[i] = textData.charCodeAt(i);
|
||||
}
|
||||
return (0, data_js_1.getBytes)(data);
|
||||
}
|
||||
exports.decodeBase64 = decodeBase64;
|
||||
function encodeBase64(_data) {
|
||||
const data = (0, data_js_1.getBytes)(_data);
|
||||
let textData = "";
|
||||
for (let i = 0; i < data.length; i++) {
|
||||
textData += String.fromCharCode(data[i]);
|
||||
}
|
||||
return btoa(textData);
|
||||
}
|
||||
exports.encodeBase64 = encodeBase64;
|
||||
//# sourceMappingURL=base64-browser.js.map
|
||||
Reference in New Issue
Block a user