Eric Foster 35b96bc934 initial commit | 6 years ago | |
---|---|---|
.. | ||
scripts | 6 years ago | |
test | 6 years ago | |
.npmignore | 6 years ago | |
.travis.yml | 6 years ago | |
LICENSE | 6 years ago | |
Makefile | 6 years ago | |
README.md | 6 years ago | |
base64.js | 6 years ago | |
base64.min.js | 6 years ago | |
bower.json | 6 years ago | |
package.json | 6 years ago |
≈ 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.
make setup
make test
* Minified and gzipped. Run make bytes
to verify.