UNPKG

typedescriptor

Version:

typedescriptor identifies and describes types.

8 lines (6 loc) 125 B
const isBoolean = function (value: any): value is boolean { return typeof value === 'boolean'; }; export { isBoolean };