(v: any)
| 18 | index === safeArrayLength(array) - 1; |
| 19 | |
| 20 | export const isUndefinedOrNull = (v: any) => v === void 0 || v === null; |
| 21 | |
| 22 | export const areAllElementsInArrayDefined = <T>(collection: T[]) => |
| 23 | arrayContainsEntries(collection) && collection.every((element) => element); |
no outgoing calls
no test coverage detected
searching dependent graphs…