node-browser-compat.js/btoa/index.js

10 lines
148 B
JavaScript
Raw Normal View History

2011-09-09 20:56:22 +00:00
(function () {
"use strict";
function btoa(str) {
return new Buffer(str, 'binary').toString('base64');
2011-09-09 20:56:22 +00:00
}
module.exports = btoa;
}());