* It converts an object to a flatted json string, * eg: { a: { b: 'test' }}, result is : `{ 'a.b': 'test' }`. * @param obj object
(obj: object)
| 53 | * @param obj object |
| 54 | */ |
| 55 | flatObject2JSONString(obj: object): string; |
| 56 | /** |
| 57 | * It converts a flatted JSON string to a normal object, |
| 58 | * eg: `{ 'a.b': 'test' }` result is : { a: { b: 'test' }}. |
no outgoing calls
no test coverage detected