(name, subscription)
| 275 | } |
| 276 | |
| 277 | function unsubscribe(name, subscription) { |
| 278 | return channel(name).unsubscribe(subscription); |
| 279 | } |
| 280 | |
| 281 | function hasSubscribers(name) { |
| 282 | const channel = channels.get(name); |
no test coverage detected
searching dependent graphs…