(obj: Object | null | undefined)
| 305 | }; |
| 306 | |
| 307 | function isEmptyObj(obj: Object | null | undefined): boolean { |
| 308 | if (!obj) return true; |
| 309 | for (const _k in obj) return false; |
| 310 | return true; |
| 311 | } |
| 312 | |
| 313 | function hasOwn(obj: Object, key: string): boolean { |
| 314 | return Object.prototype.hasOwnProperty.call(obj, key); |
no outgoing calls
no test coverage detected
searching dependent graphs…