(d: number)
| 83 | const seen = new WeakSet<object>() |
| 84 | const gap = !space ? "" : (Predicate.isNumber(space) ? " ".repeat(space) : space) |
| 85 | const ind = (d: number) => gap.repeat(d) |
| 86 | |
| 87 | const wrap = (v: unknown, body: string): string => { |
| 88 | const ctor = (v as any)?.constructor |