Very simple code Modern code Junior friendly Typescript Made with 💛
yarn add @onesy/utils // Import any of the methods
import { encode, equalDeep } from '@onesy/utils';
const value = { a: 'a', b: [{ a: 4 }] };
encode(value);
// 'eyJhIjoiYSIsImIiOlt7ImEiOjR9aa0='
equalDeep(value, { a: 'a', b: [{ a: 4 }] });
// true
// etc.Install
yarnTest
yarn testBuild
yarn build