I am examining a minified script and see this pattern function (n) { .. }(jQuery)
all over the place and it's used in chain like so: function (n) {..}(jQuery), !function (n) {..}(jQuery), !function (n) {..}(jQuery)
.
Pls note that it's not (function($) {})(jQuery);
and I couldn't find any answer to my question.
Anyone has an idea? Thanks!