(obj: object)
| 51 | const writer = createBufferedWriter(options) |
| 52 | return { |
| 53 | write(obj: object): void { |
| 54 | writer.write(jsonStringify(obj) + '\n') |
| 55 | }, |
| 56 | flush: writer.flush, |
| 57 | dispose: writer.dispose, |
| 58 | } |
nothing calls this directly
no test coverage detected