abhi2400's picture
Upload folder using huggingface_hub
04f98c3 verified
raw
history blame contribute delete
273 Bytes
(function () {
"use strict";
function btoa(str) {
var buffer;
if (str instanceof Buffer) {
buffer = str;
} else {
buffer = Buffer.from(str.toString(), 'binary');
}
return buffer.toString('base64');
}
module.exports = btoa;
}());