@amaui/utils
v1.1.40
Published
Utils
Downloads
258
Maintainers
Readme
Getting started
Add
yarn add @amaui/utilsUse
// 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
yarnTest
yarn testProd
Build
yarn build