(arr: readonly T[])
| 100 | * @internal |
| 101 | */ |
| 102 | export function last<T>(arr: readonly T[]): T | undefined { |
| 103 | return arr[arr.length - 1] |
| 104 | } |
| 105 | |
| 106 | /** |
| 107 | * Find the item in an array with the minimum value according to a function. |
no outgoing calls
no test coverage detected
searching dependent graphs…