Remove trailing commas in function parameter lists

Related issue:
- https://github.com/uBlockOrigin/uBlock-issues/issues/681
This commit is contained in:
Raymond Hill 2019-07-23 06:35:45 -04:00
parent df97249715
commit 945b3c5158
No known key found for this signature in database
GPG key ID: 25E1490B761470C2
2 changed files with 3 additions and 3 deletions

2
dist/version vendored
View file

@ -1 +1 @@
1.21.4
1.21.6

View file

@ -396,12 +396,12 @@
out.unshift(
'(function() {',
'// >>>> start of private namespace',
'',
''
);
out.push(
'',
'// <<<< end of private namespace',
'})();',
'})();'
);
return out.join('\n');