Skip to content

Commit

Permalink
docs(filter): Update JSDoc (#724)
Browse files Browse the repository at this point in the history
Co-authored-by: Sojin Park <[email protected]>
  • Loading branch information
mass2527 and raon0211 authored Oct 19, 2024
1 parent 1497a94 commit e4fd912
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compat/array/filter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export function filter<T>(arr: ArrayLike<T> | null | undefined, propertyToCheck:
* Filters items from a object and returns an array of elements that match the given predicate function.
*
* @template T
* @param {T} object - The object to iterate over.
* @param {T | null | undefined} object - The object to iterate over.
* @param {(value: T[keyof T], key: keyof T, object: T) => unknown} doesMatch - The function invoked per iteration.
* @returns {T[]} - Returns a new array of elements that satisfy the given predicate function.
*
Expand Down

0 comments on commit e4fd912

Please sign in to comment.