(value: unknown)
| 5 | } |
| 6 | |
| 7 | export function isObjectLike(value: unknown): value is { [key: string]: unknown } { |
| 8 | return typeof value === 'object' && value !== null; |
| 9 | } |
| 10 | |
| 11 | export { isPromise }; |
| 12 |
no outgoing calls
no test coverage detected
searching dependent graphs…