From 6320916513891938f7d2f0b5c9c36968ee2d8705 Mon Sep 17 00:00:00 2001 From: Richard Macklin Date: Mon, 14 Jan 2019 11:35:04 -0800 Subject: Simplify ActionCable.getConfig, Connection#getProtocol, and Connection#close by relying on the implicit undefined return value --- actioncable/app/assets/javascripts/action_cable.js | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'actioncable/app/assets/javascripts/action_cable.js') diff --git a/actioncable/app/assets/javascripts/action_cable.js b/actioncable/app/assets/javascripts/action_cable.js index 7710313c40..d860fba76e 100644 --- a/actioncable/app/assets/javascripts/action_cable.js +++ b/actioncable/app/assets/javascripts/action_cable.js @@ -191,8 +191,8 @@ if (!allowReconnect) { this.monitor.stop(); } - if (this.isActive()) { - return this.webSocket ? this.webSocket.close() : undefined; + if (this.isActive() && this.webSocket) { + return this.webSocket.close(); } }; Connection.prototype.reopen = function reopen() { @@ -211,7 +211,9 @@ } }; Connection.prototype.getProtocol = function getProtocol() { - return this.webSocket ? this.webSocket.protocol : undefined; + if (this.webSocket) { + return this.webSocket.protocol; + } }; Connection.prototype.isOpen = function isOpen() { return this.isState("open"); @@ -458,7 +460,9 @@ } function getConfig(name) { var element = document.head.querySelector("meta[name='action-cable-" + name + "']"); - return element ? element.getAttribute("content") : undefined; + if (element) { + return element.getAttribute("content"); + } } function createWebSocketURL(url) { if (url && !/^wss?:/i.test(url)) { -- cgit v1.2.3