mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
9fc58afa6d
PR-URL: https://github.com/nodejs/node/pull/14971 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com> Reviewed-By: David Cai <davidcai1993@yahoo.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
24 lines
487 B
JavaScript
24 lines
487 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const async_hooks = require('async_hooks');
|
|
const fs = require('fs');
|
|
|
|
let nestedCall = false;
|
|
|
|
async_hooks.createHook({
|
|
init: common.mustCall(function() {
|
|
nestedHook.disable();
|
|
if (!nestedCall) {
|
|
nestedCall = true;
|
|
fs.access(__filename, common.mustCall());
|
|
}
|
|
}, 2)
|
|
}).enable();
|
|
|
|
const nestedHook = async_hooks.createHook({
|
|
init: common.mustCall(2)
|
|
}).enable();
|
|
|
|
fs.access(__filename, common.mustCall());
|