You can post your first publication, but no one will see it
```js const publisher = new Publisher();
publisher.subscribe((data) => { console.log(data); });
publisher.publish(5);
// Output: 5 ```
publisher.subscribe((data) => {
console.log(data);
});
Subscriber
Generated using TypeDoc
const publisher = new Publisher();