UNPKG

has-async-hooks

Version:

check if the current node version has async_hooks.

8 lines (7 loc) 147 B
module.exports = function () { try { return typeof require('async_hooks').createHook === 'function' } catch (err) { return false } }