devsite/node_modules/@11ty/eleventy/src/Util/EventBusUtil.js
2024-07-07 18:49:38 -07:00

12 lines
283 B
JavaScript

const eventBus = require("../EventBus");
class EventBusUtil {
// Used for non-global subscriptions that will blow away the previous listener
static soloOn(name, callback) {
eventBus.off(name, callback);
eventBus.on(name, callback);
}
}
module.exports = EventBusUtil;