btoa for Node.JS (it's a one-liner)
Go to file
AJ ONeal 19e0da6568 v1.2.1 2018-03-27 22:53:48 -06:00
bin v1.2.0 2018-03-27 22:44:53 -06:00
.gitignore Initial commit 2013-07-25 09:17:12 -07:00
LICENSE Initial commit 2013-07-25 09:17:12 -07:00
LICENSE.DOCS satisfying the money-hungry lawyers... 2014-05-20 08:55:05 -06:00
README.md v1.2.0 2018-03-27 22:44:53 -06:00
index.js v1.2.0 2018-03-27 22:44:53 -06:00
package.json v1.2.1 2018-03-27 22:53:48 -06:00
test.js handle actual binary, not just utf8 2012-09-19 14:22:55 -06:00

README.md

btoa

| atob | btoa | unibabel.js | Sponsored by ppl

A port of the browser's btoa function.

Uses Buffer to emulate the exact functionality of the browser's btoa (except that it supports some unicode that the browser may not).

It turns binary data to base64-encoded ascii.

(function () {
  "use strict";

  var btoa = require('btoa');
  var bin = "Hello, 世界";
  var b64 = btoa(bin);

  console.log(b64); // "SGVsbG8sIBZM"
}());

Note: Unicode may or may not be handled incorrectly. This module is intended to provide exact compatibility with the browser.

Copyright and License

Code copyright 2012-2018 AJ ONeal

Dual-licensed MIT and Apache-2.0

Docs copyright 2012-2018 AJ ONeal

Docs released under Creative Commons.