(value: any)
| 6 | export const hasOwnProperty = Object.hasOwnProperty |
| 7 | |
| 8 | export function isString (value: any): value is string { |
| 9 | return typeof value === 'string' |
| 10 | } |
| 11 | |
| 12 | // eslint-disable-next-line @typescript-eslint/ban-types |
| 13 | export function isFunction (value: any): value is Function { |
no outgoing calls
no test coverage detected
searching dependent graphs…