Function
findLast
(
fn: (item: unknown, index: number, array: unknown[]) => boolean,
thisArg?: unknown,
)
Source from the content-addressed store, hash-verified
| 102 | }, |
| 103 | |
| 104 | findLast( |
| 105 | fn: (item: unknown, index: number, array: unknown[]) => boolean, |
| 106 | thisArg?: unknown, |
| 107 | ) { |
| 108 | return apply( |
| 109 | this, |
| 110 | 'findLast', |
| 111 | fn, |
| 112 | thisArg, |
| 113 | item => toWrapped(this, item), |
| 114 | arguments, |
| 115 | ) |
| 116 | }, |
| 117 | |
| 118 | findLastIndex( |
| 119 | fn: (item: unknown, index: number, array: unknown[]) => boolean, |
Callers
nothing calls this directly
Tested by
no test coverage detected