(options, handler)
| 48 | const eventName = getEventName(/** @type {string} */ (hookName)); |
| 49 | hook = { |
| 50 | tap(options, handler) { |
| 51 | addEvent(eventName, handler); |
| 52 | }, |
| 53 | tapAsync(options, handler) { |
| 54 | addEvent(eventName, handler); |
| 55 | }, |
nothing calls this directly
no test coverage detected