(stream, err, cb)
| 128 | } |
| 129 | |
| 130 | function _close(stream, err, cb) { |
| 131 | stream[kFs].close(stream.fd, (er) => { |
| 132 | cb(er || err); |
| 133 | }); |
| 134 | stream.fd = null; |
| 135 | } |
| 136 | |
| 137 | function importFd(stream, options) { |
| 138 | if (typeof options.fd === 'number') { |