UNPKG

typedescriptor

Version:

typedescriptor identifies and describes types.

8 lines (6 loc) 133 B
const isUndefined = function (value: any): value is undefined { return typeof value === 'undefined'; }; export { isUndefined };