UNPKG

@logcomex/aylawc-core

Version:

An experimental library of web components

12 lines 301 B
export class EventBucket { constructor() { this._unsubscribers = []; } register(unsubscribe) { this._unsubscribers.push(unsubscribe); } destroy() { this._unsubscribers.forEach((unsubscribe) => unsubscribe()); } } //# sourceMappingURL=event-bucket.js.map