Base64 encode, decode, escape and unescape for URL applications.
> base64url.encode('Node.js is awesome.');
Tm9kZS5qcyBpcyBhd2Vzb21lLg
> base64url.decode('Tm9kZS5qcyBpcyBhd2Vzb21lLg');
Node.js is awesome.
> base64url.escape('This+is/goingto+escape==');
This-is_goingto-escape
> base64url.unescape('This-is_goingto-escape');
This+is/goingto+escape==
this projet has been set up with a precommit that forces you to follow a code style, no jshint issues and 100% of code coverage before commit
to run test
npm testto run jshint
npm run jshintto run code style
npm run code-styleto check code coverage
npm run check-coverageto open the code coverage report
npm run open-coverage
