cloudcmd/common/btoa.js

13 lines
199 B
JavaScript

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