mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
13 lines
199 B
JavaScript
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');
|
|
};
|
|
|