Lines Matching defs:fs
26 const fs = require('fs');
35 const stream = fs.WriteStream(file);
36 const _fs_close = fs.close;
38 fs.close = function(fd) {
39 assert.ok(fd, 'fs.close must not be called without an undefined fd.');
40 fs.close = _fs_close;
41 fs.closeSync(fd);
47 const stream = fs.createWriteStream(file);
58 const stream = fs.createWriteStream(file);