(index: number, array: T[])
| 15 | export const isFunction = (v: any): v is Function => typeof v === 'function'; |
| 16 | |
| 17 | export const isLastIndexInArray = <T>(index: number, array: T[]) => |
| 18 | index === safeArrayLength(array) - 1; |
| 19 | |
| 20 | export const isUndefinedOrNull = (v: any) => v === void 0 || v === null; |
| 21 |
no test coverage detected
searching dependent graphs…