(val: unknown)
| 49 | type Loose = Record<PropertyKey, unknown>; |
| 50 | |
| 51 | function isObject(val: unknown): boolean { |
| 52 | return typeof val === "object" && val !== null; |
| 53 | } |
| 54 | |
| 55 | function defineProperty(target: object, key: PropertyKey, value: unknown) { |
| 56 | return Object.defineProperty(target, key, { |
no outgoing calls
no test coverage detected