A set of pure utility methods.
npm install pure-utilities
import { flatten } from 'pure-utilities/object'
flatten({ hello: { world: '1234' } }); // { 'hello.world': '1234' }
To see available commands run:
npm run
Lint:
npm run lint
Test:
npm test
Coverage:
npm run coverage
Build:
npm run build