• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1const async_hooks = require('async_hooks');
2const common = require('../../common');
3
4const hook = async_hooks.createHook({
5  init: common.mustNotCall(),
6  before: common.mustNotCall(),
7  after: common.mustNotCall(),
8  destroy: common.mustNotCall()
9});
10
11hook.enable();
12