mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-24 20:28:06 +02:00
7 lines
162 B
TypeScript
7 lines
162 B
TypeScript
function fileClean(path: string): void {
|
|||
var fd = fs.openSync(path, 'r');
|
|||
var buf = Buffer.alloc(1024);
|
|||
fs.readSync(fd, buf);
|
|||
fs.closeSync(fd);
|
|||
}
|