Eric Foster 35b96bc934 initial commit 6 лет назад
..
scripts initial commit 6 лет назад
test initial commit 6 лет назад
.npmignore initial commit 6 лет назад
.travis.yml initial commit 6 лет назад
LICENSE initial commit 6 лет назад
Makefile initial commit 6 лет назад
README.md initial commit 6 лет назад
base64.js initial commit 6 лет назад
base64.min.js initial commit 6 лет назад
bower.json initial commit 6 лет назад
package.json initial commit 6 лет назад

README.md

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.