(err)
| 1438 | let timeout; |
| 1439 | |
| 1440 | const callbackOnce = (err) => { |
| 1441 | if (timeout) { |
| 1442 | clearTimeout(timeout); |
| 1443 | } |
| 1444 | cb(err); |
| 1445 | cb = utils.noop; |
| 1446 | }; |
| 1447 | |
| 1448 | // If process hasn't completed in 10 seconds. |
| 1449 | timeout = setTimeout(function() { |