base64-lite
v1.0.3
Published
Smallest/simplest possible means of using atob with both Node and browserify
Downloads
312
Maintainers
Readme
base64-lite
Smallest/simplest possible means of using atob with both Node and browserify.
var base64 = require('base64-lite');
var encoded = base64.btoa('hello world') -> 'aGVsbG8gd29ybGQ='
var decoded = base64.atob('aGVsbG8gd29ybGQ=') -> 'hello world'
License
MIT. See LICENSE.md for details.