UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

10 lines 288 B
const btoa = require("btoa"); /** * Converts the given string to base64 representation * @param {string} str Input string * @return string The base64 representation of the input string */ export const toBase64 = (str) => { return btoa(str); }; //# sourceMappingURL=toBase64.js.map