cloudcmd/common/btoa.js
2019-07-22 20:42:09 +03:00

11 lines
180 B
JavaScript

'use strict';
module.exports = (str) => {
if (typeof btoa === 'function')
return btoa(str);
return Buffer
.from(str)
.toString('base64');
};