@amaui/utils
v1.1.30
Published
Utils
Downloads
1,515
Maintainers
Readme
Getting started
Add
yarn add @amaui/utils
Use
// Import any of the methods
import { encode, equalDeep } from '@amaui/utils';
const value = { a: 'a', b: [{ a: 4 }] };
encode(value);
// 'eyJhIjoiYSIsImIiOlt7ImEiOjR9aa0='
equalDeep(value, { a: 'a', b: [{ a: 4 }] });
// true
// etc.
Dev
Install
yarn
Test
yarn test
Prod
Build
yarn build