A utility function to convert JSON objects to dotnotation
npm install @zishone/dotnotateshell
$ npm i @zishone/dotnotate
`Usage
$3
`javascript
const { dotnotate } = require('@zishone/dotnotate');
`
$3
`javascript
const obj = { a: { b: { c: 1 } } };const dotnotatedObj = dotnotate(obj);
console.log(JSON.stringify(dotnotatedObj, null, 2))
// {
// 'a.b.c': 1
// }
``See also the list of contributors who participated in this project.