(fn: any)
| 60 | export const noop = () => {} |
| 61 | |
| 62 | export function isFunction(fn: any): fn is Function { |
| 63 | return typeof fn === "function" |
| 64 | } |
| 65 | |
| 66 | export function isString(value: any): value is string { |
| 67 | return typeof value === "string" |
no outgoing calls
no test coverage detected
searching dependent graphs…