mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 08:39:13 +08:00
8 lines
No EOL
193 B
Text
8 lines
No EOL
193 B
Text
/**
|
|
* Encodes a string as base64
|
|
* @param {string} str - the string to encode
|
|
* @returns {string}
|
|
*/
|
|
export default function btoa ( str ) {
|
|
return new Buffer( str ).toString( 'base64' );
|
|
} |