[lint] make the outer function a recognizable IIFE

This commit is contained in:
Federico Soave 2018-01-20 03:10:00 +01:00
parent d9c471e265
commit 565b4a0e5b

View File

@ -1312,9 +1312,7 @@ if (typeof module !== 'undefined' && typeof exports === 'object') {
} else if (typeof define === 'function' && define.amd) {
define(function() { return marked; });
} else {
this.marked = marked;
var exp = this || (typeof window !== 'undefined' ? window : global);
exp.marked = marked;
}
}).call(function() {
return this || (typeof window !== 'undefined' ? window : global);
}());
})();