style: drop redundant semicolons after function declarations (filegen templates + static js)

This commit is contained in:
Florian Andrew George Berthold 2026-06-10 06:13:19 +02:00
parent 1491db51e3
commit 1c88254a06
18 changed files with 33 additions and 33 deletions

View file

@ -553,7 +553,7 @@ $WH.eO = function(z) {
// Duplicate object
$WH.dO = function(s) {
function f(){};
function f(){}
f.prototype = s;
return new f;
}