mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 22:39:30 +08:00
8 lines
No EOL
207 B
Text
8 lines
No EOL
207 B
Text
/**
|
|
* 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' );
|
|
} |