Get the value of a property in an object.
const getFoo = get("foo");getFoo({ foo: "bar" }); // "bar"getFoo({}); // undefined
Curried function with key in context.
key
Get the value of a property in an object.
Example
Returns
Curried function with
key
in context.