cloudcmd/common/btoa.js
2020-12-22 13:29:19 +02:00

9 lines
163 B
JavaScript

export default (str) => {
if (typeof btoa === 'function')
return btoa(str);
return Buffer
.from(str)
.toString('base64');
};