base64url icon indicating copy to clipboard operation
base64url copied to clipboard

For encoding and decoding base64url!

Results 16 base64url issues
Sort by recently updated
recently updated
newest added

**Example:** _Inp:_ fdsfdsafdsaff|https://cdsf.fdsf.fdsfsd.com/rep|https://lfdjsfjsdfj.fdskfjdsk.com/license _Outputs:_ ZmRzZmRzYWZkc2FmZnxodHRwczovL2Nkc2YuZmRzZi5mZHNmc2QuY29tL3JlcHxodHRwczovL2xmZGpzZmpzZGZqLmZkc2tmamRzay5jb20vbGljZW5zZQ **Testing** _Decoding:_ $ echo | base64 -D _Outputs:_ fdsfdsafdsaff|https://cdsf.fdsf.fdsfsd.com/rep|https://lfdjsfjsdfj.fdskfjdsk.com/licens **Expected** The common additional characters at the end of the base64 encoded string should be present,...

bug

Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.5.5 to 6.12.6. Release notes Sourced from ajv's releases. v6.12.6 Fix performance issue of "url" format. v6.12.5 Fix uri scheme validation (@​ChALkeR). Fix boolean schemas with strictKeywords...

dependencies

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.11 to 4.17.21. Commits f299b52 Bump to v4.17.21 c4847eb Improve performance of toNumber, trim and trimEnd on large input strings 3469357 Prevent command injection through _.template's variable...

dependencies

we recently upgraded our application to angular 6 and RxJs 6. Now I get the following error when trying to encode/decode Uncaught ReferenceError: Buffer is not defined at encode (base64url.js:5)...

This PR makes use of the recently [landed](https://github.com/nodejs/node/pull/36952) `base64url` encoding option in Node.js when available on the `encode` method. This one is [benchmarked](https://gist.github.com/panva/f09df60cfbcc3f94637714b207e2d074#gistcomment-3597872) to be significantly faster than the replace...

I'm having a hard time figuring out in what JS environment will this package work. It makes a clear mention of Node.js but no mention of browser or React Native....

Let's no longer support node.js 6. This change is arguably Semver-Major * update docs for dev * update tap * add node.js 12 to travis * remove node.js 6 from...

Semver-Major

Bumps [js-yaml](https://github.com/nodeca/js-yaml) from 3.12.0 to 3.13.1. Changelog *Sourced from [js-yaml's changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md).* > ## [3.13.1] - 2019-04-05 > ### Security > - Fix possible code execution in (already unsafe) `.load()`, [#480](https://github-redirect.dependabot.com/nodeca/js-yaml/issues/480)....

dependencies

I don't want to install another library to decode base64 encoded string, so should I use this lib in strange way like this ? `base64url.decode(base64url.fromBase64(string))`