This semicolon will help you correctly merge the new code into a file if the current existing code in this file does not contain ; in the end.
For example:
(function() { })()
Without a semicolon, the second () would be interpreted as a function call and tried to call the result of the return of the first function
Eli
source share