Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@jswork/next-json2base64

afeiship37MIT1.0.9TypeScript support: included

Json and base64 encode/decode.

next, json, base64, b64, parse, stringify

readme

next-json2base64

Json and base64 encode/decode.

version license size download

installation

npm install -S @jswork/next-json2base64

apis

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.

usage

import NxJson2base64 from '@jswork/next-json2base64';

// code goes here:
NxJson2base64.decode('eyJuYW1lIjoiYWZlaSIsImFnZSI6MTA4fQ==');
// { name: 'afei', age: 108 }

resources

license

Code released under the MIT license.