Urara-Blog/node_modules/.pnpm-store/v3/files/38/89ea9dbbdff6eb90df0649354afe32c846793581fe665c67cdd525d4a5029bfe20e0dbd4cd2ea1437130a8720e12c43e42d977efe978d1b6a2c6541408fd48
2022-08-14 01:14:53 +08:00

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' );
}