(x: T | undefined | null | boolean | string | symbol | number)
| 1289 | // 6.1.7 The Object Type |
| 1290 | // https://tc39.github.io/ecma262/#sec-object-type |
| 1291 | function IsObject<T>(x: T | undefined | null | boolean | string | symbol | number): x is T { |
| 1292 | return typeof x === "object" ? x !== null : typeof x === "function"; |
| 1293 | } |
| 1294 | |
| 1295 | // 7.1 Type Conversion |
| 1296 | // https://tc39.github.io/ecma262/#sec-type-conversion |
no outgoing calls
no test coverage detected
searching dependent graphs…