mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 02:35:49 +00:00
9 lines
163 B
JavaScript
9 lines
163 B
JavaScript
export default (str) => {
|
|
if (typeof btoa === 'function')
|
|
return btoa(str);
|
|
|
|
return Buffer
|
|
.from(str)
|
|
.toString('base64');
|
|
};
|
|
|