thi-ng/umbrella

View on GitHub
packages/checks/src/is-set.ts

Summary

Maintainability
A
35 mins
Test Coverage
export const isSet = <T = any>(x: any): x is Set<T> => x instanceof Set;