UNPKG

typedescriptor

Version:

typedescriptor identifies and describes types.

8 lines (6 loc) 139 B
const isObject = function (value: any): value is object { return typeof value === 'object' && value !== null; }; export { isObject };