我在文件中看到了一个函数,像这样......
! function(e) {
if ("object" == typeof exports && "undefined" != typeof module) module.exports = e();
else if ("function" == typeof define && define.amd) define([], e);
else {
var f;
"undefined" != typeof window ? f = window : "undefined" != typeof global ? f = global : "undefined" != typeof self && (f = self), f.kwsUtils = e()
alert('Inside the function....e is '+e);
}
}
当我在我的NodeJS文件中尝试相同的事情时,不会调用该函数,请告诉您是否知道调用这些函数以及它们是如何被调用的。