(coll: Coll<unknown> | undefined)
| 24 | ): boolean => coll?.has(keyOrValue) ?? false; |
| 25 | |
| 26 | export const collIsEmpty = (coll: Coll<unknown> | undefined): boolean => |
| 27 | isUndefined(coll) || collSize(coll) == 0; |
| 28 | |
| 29 | export const collValues = <Value>(coll: Coll<Value> | undefined): Value[] => [ |
| 30 | ...(coll?.values() ?? []), |
no test coverage detected
searching dependent graphs…