* WebSocket transport constructor. * * @param {Object} opts - connection options * @protected
(opts)
| 1533 | * @protected |
| 1534 | */ |
| 1535 | function WS(opts) { |
| 1536 | var _this; |
| 1537 | _classCallCheck(this, WS); |
| 1538 | _this = _super.call(this, opts); |
| 1539 | _this.supportsBinary = !opts.forceBase64; |
| 1540 | return _this; |
| 1541 | } |
| 1542 | _createClass(WS, [{ |
| 1543 | key: "name", |
| 1544 | get: function get() { |
nothing calls this directly
no test coverage detected