Get a value from an object using a path string.
The object to get the value from.
The path string to use.
The delimiter to use for splitting the path string.
The value at the end of the path.
objectPath({ a: { b: { c: 1 } } }, 'a/b/c', '/'); // 1 Copy
objectPath({ a: { b: { c: 1 } } }, 'a/b/c', '/'); // 1
Get a value from an object using a path string.