( array: T[], value: T )
| 8 | * @return `true` if the array includes the value, or otherwise `false`. |
| 9 | */ |
| 10 | export function includes<T>( array: T[], value: T ): boolean { |
| 11 | return array.indexOf( value ) > -1; |
| 12 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…