chore(cloudcmd) base64: lint

This commit is contained in:
coderaiser 2021-12-15 12:21:28 +02:00
parent 205d641e75
commit 2654197681

View file

@ -3,7 +3,7 @@
const isFn = (a) => typeof a === 'function';
module.exports.btoa = (str) => {
if (isFn(btoa))
if (typeof btoa === 'function')
return btoa(str);
return Buffer