In several JavaScript libraries I saw this notation at the very beginning:
/** * Library XYZ */ ;(function () { // ... and so on
While
It allows you to safely concatenate several JavaScript files into one, to serve it quicker as one HTTP request.