Last analyzed c54e5cc 2 months ago
Default analysis branch is
Currently analyzing run
Found duplicate assignments JS-W1032
Bug risk
5 months ago5 months old
Duplicate assignment statement found
 75          function changeOverflow(value) {
 76            {
 77              var width = ta.style.width;
 78              ta.style.width = "0px"; 79              ta.style.width = width;
 80            }
 81            ta.style.overflowY = value;
Duplicate assignment statement found
102              return;
103            }
104            var restoreOverflows = bookmarkOverflows(ta);
105            ta.style.height = "";106            ta.style.height = ta.scrollHeight + heightOffset + "px";
107            clientWidth = ta.clientWidth;
108            restoreOverflows();
Duplicate assignment statement found
  495    }
  496    if (url && !/^wss?:/i.test(url)) {
  497      const a2 = document.createElement("a");
  498      a2.href = url;  499      a2.href = a2.href;
  500      a2.protocol = a2.protocol.replace("http", "ws");
  501      return a2.href;