Smallest/simplest possible means of using atob with both Node and browserify
npm install atob-liteSmallest/simplest possible means of using atob with both Node and browserify.
In the browser, decoding base64 strings is done using:
`` javascript`
var decoded = atob(encoded)
However in Node, it's done like so:
` javascript`
var decoded = new Buffer(encoded, 'base64').toString('utf8')
You can easily check if Buffer exists and switch between the approachesBuffer
accordingly, but using anywhere in your browser source will pullBuffer
in browserify's shim which is pretty hefty. This package usesmain
the and browser fields in its package.json to perform thisBuffer` in unnecessarily.
check at build time and avoid pulling

Returns the decoded value of a base64-encoded string.
MIT. See LICENSE.md for details.