dulichan / Base64.js

Polyfill for browsers which don't provide window.btoa and window.atob

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Base64.js

≈ 500 byte* polyfill for browsers which don't provide window.btoa and window.atob.

Although the script does no harm in browsers which do provide these functions, a conditional script loader such as yepnope can prevent unnecessary HTTP requests.

yepnope({
  test: window.btoa && window.atob,
  nope: 'base64.js',
  callback: function () {
    // `btoa` and `atob` are now safe to use
  }
})

Base64.js stems from a gist by yahiko.

Running the test suite

make setup
make test

* Minified and gzipped. Run make bytes to verify.

About

Polyfill for browsers which don't provide window.btoa and window.atob

License:Other


Languages

Language:CoffeeScript 45.8%Language:JavaScript 39.2%Language:Makefile 13.3%Language:Shell 1.7%