(value: unknown)
| 391 | export const defined = (value: unknown) => typeof value !== 'undefined'; |
| 392 | |
| 393 | export const isFunction = (value: unknown): value is (...args: any[]) => any => typeof value === 'function'; |
| 394 | |
| 395 | // Adapted from https://stackoverflow.com/questions/31128855/comparing-ecma6-sets-for-equality#31129384 |
| 396 | export const setsEqual = <T>(a: Set<T>, b: Set<T>) => { |
no outgoing calls
no test coverage detected