UNPKG

typedescriptor

Version:

typedescriptor identifies and describes types.

8 lines (6 loc) 112 B
const isSet = function (value: any): value is Set<any> { return value instanceof Set; }; export { isSet };