@frontalnh/json-dot-parser
v0.1.7
Published
Converts json object whick has key written in dot notation to plain json object
Downloads
673
Maintainers
Readme
json-dot-parser
Converts json object whick has key with dot notation to plain json object
Install
npm install @frontalnh/json-dot-parser
Usage
import { removeDotInJson } from '@frontalnh/json-dot-parser';
let data = {
a: 'a',
b: 'b',
'c.a': 'a',
'c.b': 'b'
};
removeDotInJson(data);
console.log(data); // {a:"a",b:"b",c:{a:"a",b:"b"}}