btoa-node.js 84 B

123
  1. module.exports = function btoa(str) {
  2. return new Buffer(str).toString('base64')
  3. }