mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
7192e913f7
PR-URL: https://github.com/nodejs/node/pull/14616 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Refael Ackermann <refack@gmail.com>
8 lines
154 B
JavaScript
8 lines
154 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
process.on('beforeExit', common.mustCall(() => {
|
|
setTimeout(common.mustNotCall(), 1).unref();
|
|
}));
|