atob.js/README.md

20 lines
411 B
Markdown
Raw Normal View History

2012-09-19 20:22:55 +00:00
atob
===
Uses `Buffer` to emulate the exact functionality of the browser's atob.
Note: Unicode may be handled incorrectly (like the browser).
It turns base64-encoded **a**scii data back **to** **b**inary.
(function () {
"use strict";
var atob = require('atob')
, b64 = "SGVsbG8gV29ybGQ="
, bin = atob(b64)
;
console.log(bin); // "Hello World"
}());