mirror of
https://github.com/elicpeter/nyx.git
synced 2026-07-03 20:41:00 +02:00
8 lines
191 B
TypeScript
8 lines
191 B
TypeScript
import * as fs from 'fs';
|
|||
|
|||
function writeAfterDestroy(path: string): void {
|
|||
var stream = fs.createWriteStream(path);
|
|||
stream.destroy();
|
|||
stream.write("data"); // use after close!
|
|||
}
|