DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
207 Bytes
/**
* Decodes a base64 string
* @param {string} base64 - the string to decode
* @returns {string}
*/
export default function atob ( base64 ) {
return new Buffer( base64, 'base64' ).toString( 'utf8' );
}