A suite to track Project Diva score statistics and ratings / D4DJ event data.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
projectdivar/server/node_modules/atob-lite
sigonasr2 0785506fad Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
..
.npmignore Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
LICENSE.md Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
README.md Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
atob-browser.js Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
atob-node.js Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
package.json Update and test twitter endpoints and connections. Prepare java spring server 4 years ago

README.md

atob-lite

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

In the browser, decoding base64 strings is done using:

var decoded = atob(encoded)

However in Node, it's done like so:

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

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

decoded = atob(encoded)

Returns the decoded value of a base64-encoded string.

License

MIT. See LICENSE.md for details.