Files
starface-outlook-sync-addin/node_modules/thingies/lib/base64.js
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

8 lines
309 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.decode64 = exports.encode64 = void 0;
const encode64 = (str) => Buffer.from(str).toString('base64');
exports.encode64 = encode64;
const decode64 = (str) => Buffer.from(str, 'base64').toString();
exports.decode64 = decode64;