jayfella c97084e992 Initial Commit 5 năm trước cách đây
..
.npmignore c97084e992 Initial Commit 5 năm trước cách đây
LICENSE.md c97084e992 Initial Commit 5 năm trước cách đây
README.md c97084e992 Initial Commit 5 năm trước cách đây
btoa-browser.js c97084e992 Initial Commit 5 năm trước cách đây
btoa-node.js c97084e992 Initial Commit 5 năm trước cách đây
package.json c97084e992 Initial Commit 5 năm trước cách đây

README.md

btoa-lite

Smallest/simplest possible means of using btoa with both Node and browserify.

In the browser, encoding base64 strings is done using:

var encoded = btoa(decoded)

However in Node, it's done like so:

var encoded = new Buffer(decoded).toString('base64')

You can easily check if Buffer exists and switch between the approaches accordingly, but using Buffer anywhere in your browser source will pull in browserify's Buffer shim which is pretty hefty. This package uses the main and browser fields in its package.json to perform this check at build time and avoid pulling Buffer in unnecessarily.

Usage

NPM

encoded = btoa(decoded)

Returns the base64-encoded value of a string.

License

MIT. See LICENSE.md for details.