(data: any)
| 75 | } |
| 76 | |
| 77 | override async push(data: any): Promise<void> { |
| 78 | const content = this.sep + JSON.stringify(data); |
| 79 | if (!this.sep) { |
| 80 | this.sep = ","; |
| 81 | } |
| 82 | return this.performWrite(content); |
| 83 | } |
| 84 | |
| 85 | override async preEnd() { |
| 86 | await this.performWrite(']'); |
no test coverage detected