devsite/node_modules/@11ty/eleventy/src/Util/EventBusUtil.js

12 lines
283 B
JavaScript
Raw Normal View History

2024-07-08 01:49:38 +00:00
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;