UNPKG

@dependabot/yarn-lib

Version:

📦🐈 Fast, reliable, and secure dependency management.

27 lines (19 loc) 494 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.callThroughHook = callThroughHook; const YARN_HOOKS_KEY = 'experimentalYarnHooks'; function callThroughHook(type, fn, context) { if (typeof global === 'undefined') { return fn(); } if (typeof global[YARN_HOOKS_KEY] !== 'object' || !global[YARN_HOOKS_KEY]) { return fn(); } const hook = global[YARN_HOOKS_KEY][type]; if (!hook) { return fn(); } return hook(fn, context); }