mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
11 lines
180 B
JavaScript
11 lines
180 B
JavaScript
'use strict';
|
|
|
|
module.exports = (str) => {
|
|
if (typeof btoa === 'function')
|
|
return btoa(str);
|
|
|
|
return Buffer
|
|
.from(str)
|
|
.toString('base64');
|
|
};
|
|
|