Package Exports
- base64-url
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (base64-url) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
base64-url
Base64 encode, decode, escape and unescape for URL applications.
API
const base64url = require('base64-url')
examples
base64url.encode('Node.js is awesome.')
// returns Tm9kZS5qcyBpcyBhd2Vzb21lLg
base64url.decode('Tm9kZS5qcyBpcyBhd2Vzb21lLg')
// returns Node.js is awesome.
base64url.escape('This+is/goingto+escape==')
// returns This-is_goingto-escape
base64url.unescape('This-is_goingto-escape')
// returns This+is/goingto+escape==
//
// setting a different encoding
//
base64url.encode(string to encode, encoding)
base64url.decode(string to decode, encoding)
