UNPKG

267 BJavaScriptView Raw
1const EventEmitter = require('events');
2
3/**
4 * Subscription event emitter
5 */
6class Subscription extends EventEmitter {
7 constructor(id) {
8 super();
9 this.id = id;
10 }
11
12 toString() {
13 return this.id;
14 }
15}
16
17module.exports = Subscription;