(obj: Object, key: PropertyKey)
| 37 | } |
| 38 | |
| 39 | export function hasOwn(obj: Object, key: PropertyKey): boolean { |
| 40 | return Object.hasOwnProperty.call(obj, key) |
| 41 | } |
| 42 | |
| 43 | export function assert(condition: any, msg: string) { |
| 44 | if (!condition) { |
no outgoing calls
no test coverage detected
searching dependent graphs…