Skip to content

Commit

Permalink
Remove trailing commas in function parameter lists
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Jul 23, 2019
1 parent df97249 commit 945b3c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.21.4
1.21.6
4 changes: 2 additions & 2 deletions src/js/scriptlet-filtering.js
Original file line number Diff line number Diff line change
Expand Up @@ -396,12 +396,12 @@
out.unshift(
'(function() {',
'// >>>> start of private namespace',
'',
''
);
out.push(
'',
'// <<<< end of private namespace',
'})();',
'})();'
);

return out.join('\n');
Expand Down

0 comments on commit 945b3c5

Please sign in to comment.