* Call the given handler with the arguments * @method send * @memberof StreamClient.prototype * @access private
(key: string, ...args: unknown[])
| 435 | * @access private |
| 436 | */ |
| 437 | send(key: string, ...args: unknown[]) { |
| 438 | if (this.handlers[key]) this.handlers[key].apply(this, args); |
| 439 | } |
| 440 | |
| 441 | /** |
| 442 | * Get the current user agent |
no outgoing calls
no test coverage detected