alejandro.alvarez5 70bb213259 articulo | преди 3 години | |
---|---|---|
.. | ||
LICENSE | преди 3 години | |
README.md | преди 3 години | |
index.js | преди 3 години | |
package.json | преди 3 години |
Do stuff with an open file, knowing it will finally be closed
Because the built-in way requires way too much boilerplate.
$ npm install with-open-file
const withOpenFile = require('with-open-file')
withOpenFile('foo.txt', 'r', fd => {
// Process file using fd
})
withOpenFile.sync('foo.txt', 'r', fd => {
// Process file synchronously using fd
})
Returns a Promise
wrapping the result of calling callback
with the requested file descriptor.
Returns the result of calling callback
with the requested file descriptor.
Arguments as supported by fs.openSync
Type: function
MIT © Raphael von der Grün