We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f2347c commit b2db0dfCopy full SHA for b2db0df
lib/pdf.js
@@ -153,7 +153,7 @@ PDF.prototype.exec = function PdfExec (callback) {
153
// An exit event is most likely an error because we didn't get any data at this point
154
child.on('close', respond)
155
// According to child process documentation (https://nodejs.org/docs/latest-v14.x/api/child_process.html#child_process_event_exit),
156
- // exit event can fire before stdio is closed. Thus, it's probably not a good idea to subscribe to exit event at all
+ // exit event can fire before stdio is closed. Thus, it's probably not a good idea to subscribe to exit event at all.
157
// on('close') above should be sufficient
158
// child.on('exit', respond)
159
0 commit comments