1.0.9 • Published 3 months ago

@jswork/next-json2base64 v1.0.9

Weekly downloads
-
License
MIT
Repository
-
Last release
3 months ago

next-json2base64

Json and base64 encode/decode.

version license size download

installation

npm install -S @jswork/next-json2base64

apis

apiparamsdescription
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.