UNPKG

typedescriptor

Version:

typedescriptor identifies and describes types.

8 lines (6 loc) 121 B
const isString = function (value: any): value is string { return typeof value === 'string'; }; export { isString };