Smallest/simplest possible means of using btoa with both Node and browserify
npm install btoa-liteSmallest/simplest possible means of using btoa with both Node and browserify.
In the browser, encoding base64 strings is done using:
`` javascript`
var encoded = btoa(decoded)
However in Node, it's done like so:
` javascript`
var encoded = new Buffer(decoded).toString('base64')
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 base64-encoded value of a string.
MIT. See LICENSE.md for details.