(o: object)
| 90 | } |
| 91 | |
| 92 | const ownKeys = (o: object): Array<PropertyKey> => { |
| 93 | try { |
| 94 | return Reflect.ownKeys(o) |
| 95 | } catch { |
| 96 | return ["[ownKeys threw]"] |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | function go(v: unknown, d = 0): string { |
| 101 | if (Array.isArray(v)) { |
no outgoing calls
no test coverage detected
searching dependent graphs…