UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

10 lines 297 B
const atob = require("atob"); /** * Converts the given base64 encoded string to and ASCII string * @param {string} str64 Base64 encoded string * @return string The decodede ASCII string */ export const fromBase64 = (str64) => { return atob(str64); }; //# sourceMappingURL=fromBase64.js.map