Utilities to operate on objects
Static
Clone an object
Deep merge two key value objects
Simple JSON path function
eg. const obj = { foo : { bar: { test: 1 } } }
Object.path(obj, 'foo.bar.test'); // 1
The value from the path or undefined if not found
Generated using TypeDoc
Utilities to operate on objects