We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 018dd6e commit fb65b9aCopy full SHA for fb65b9a
1 file changed
README.md
@@ -1936,13 +1936,13 @@ Other Style Guides
1936
(() => {
1937
const name = 'Skywalker';
1938
return name;
1939
- })();
+ }());
1940
1941
// good (guards against the function becoming an argument when two files with IIFEs are concatenated)
1942
;(() => {
1943
1944
1945
1946
```
1947
1948
[Read more](http://stackoverflow.com/questions/7365172/semicolon-before-self-invoking-function/7365214%237365214).
0 commit comments