The ability to read and write to file descriptors other than stdin, stdout and stderr. See the example of nodejs below to get a better idea. Node.js example: ```js const file = fs.createWriteStream(null, { fd: 3, encoding: "utf8" }) ```
The ability to read and write to file descriptors other than stdin, stdout and stderr. See the example of nodejs below to get a better idea.
Node.js example: