Function filterKeys
- filter
Keys <T>(record, predicate): Record<string, T> Type Parameters
Parameters
- record: Readonly<Record<string, T>>
The record to filter keys from.
- predicate: ((key: string) => boolean)
The function to test each key for a condition.
- (key): boolean
Parameters
- key: string
Returns boolean
Returns Record<string, T>
A new record with all entries that have a key that matches the given predicate.
- record: Readonly<Record<string, T>>
Returns a new record with all entries of the given record except the ones that have a key that does not match the given predicate.