/object/find
stdSearches the given object by the given predicate and returns the found value or undefined.
Type signature
<T>(predicate: (value: T, key: string, context: object) => boolean) => (xs: GenericObject<T>) => T | undefined
Examples
find(({ x }) => x % 2 === 0)({
a: { x: 1 },
b: { x: 2 },
c: { x: 3 },
});
// ⇒ { x: 2 }
Try in REPL
Questions
- How to find the value of an object by a predicate function?