Json and base64 encode/decode.
npm install -S @jswork/next-json2base64| api | params | description |
|---|---|---|
| base64 | - | js-base64 reference. |
| decode | (string) | Transform base64 string to js object. |
| decodeURI | (string) | Transform base64 string to js object when is in url case. |
| encode | (object) | Transform object to base64 string. |
| encodeURI | (object) | Transform object to base64 string when is in url case. |
import NxJson2base64 from '@jswork/next-json2base64';
// code goes here:
NxJson2base64.decode('eyJuYW1lIjoiYWZlaSIsImFnZSI6MTA4fQ==');
// { name: 'afei', age: 108 }Code released under the MIT license.