(this: Chunk<A>)
| 130 | return format(this.toJSON()) |
| 131 | }, |
| 132 | toJSON<A>(this: Chunk<A>) { |
| 133 | return { |
| 134 | _id: "Chunk", |
| 135 | values: toReadonlyArray(this).map(toJSON) |
| 136 | } |
| 137 | }, |
| 138 | [NodeInspectSymbol]<A>(this: Chunk<A>) { |
| 139 | return this.toJSON() |
| 140 | }, |
nothing calls this directly
no test coverage detected