* It converts an object to a flatted object, * eg: { a: { b: 'test' }}, result is : { 'a.b': 'test' }. * @param obj object
(obj: object)
| 47 | * @param obj object |
| 48 | */ |
| 49 | flatObject(obj: object): object; |
| 50 | /** |
| 51 | * It converts an object to a flatted json string, |
| 52 | * eg: { a: { b: 'test' }}, result is : `{ 'a.b': 'test' }`. |
no outgoing calls
no test coverage detected