blob: c73c9c7d6ad9aea7bd27c30e31a86f2a79194cd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
'use strict';
const common = require('../common');
const fs = require('fs');
const path = require('path');
common.refreshTmpDir();
const s = fs.createWriteStream(path.join(common.tmpDir, 'rw'));
s.close(common.mustCall());
s.close(common.mustCall());
|