Object Keys Recursive String Parse
The EDirectInsure Object Keys Recursive String Parse.
``sh`
npm i --save @edirect/object-keys-string-parse
`js
import { objectKeysStringParse } from '@edirect/object-keys-string-parse';
objectKeysStringParse({ foo: { bar: 'baz' } });
//=> { 'foo.bar' : 'baz' }
`
Skip array parse
`js
import { objectKeysStringParse } from '@edirect/object-keys-string-parse';
objectKeysStringParse({ foo: ['bar', 'baz'] }, { skipArray: true });
//=> { foo : ['bar', 'baz'] }
``