What is the purpose of declaring a function (an IIFE) like the following :
// note the leading ;
;(function (params) {
//...
})(123)
My question is specifically about the leading ;.
I found this in the semantic-ui repository.
What is the purpose of declaring a function (an IIFE) like the following :
// note the leading ;
;(function (params) {
//...
})(123)
My question is specifically about the leading ;.
I found this in the semantic-ui repository.