blob: 0278470bb4fdcb85cb7e6a668c47dc089fcd1841 [file] [log] [blame]
module.exports = function btoa(str) {
return new Buffer(str).toString('base64')
}