1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-14 23:12:28 +02:00

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-22 17:38:23 -04:00
parent a89aad0304
commit 075d78e8e6
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

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