(arg)
| 11 | } |
| 12 | |
| 13 | export function isFunction (arg): arg is Function { |
| 14 | return typeof arg === 'function' |
| 15 | } |
| 16 | |
| 17 | export function isBoolean (arg): arg is true | false { |
| 18 | return arg === true || arg === false |
no outgoing calls
no test coverage detected