You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After generating a not minified file, I found the following function:
exports.setImmediate=typeofsetImmediate==="function" ? setImmediate : function(fn){varid=nextImmediateId++;varargs=arguments.length<2 ? false : slice.call(arguments,1);immediateIds[id]=true;nextTick(functiononNextTick(){if(immediateIds[id]){// fn.call() is faster so we optimize for the common use-case// @see http://jsperf.com/call-apply-seguif(args){fn.apply(null,args);}else{fn.call(null);}// Prevent ids from leakingexports.clearImmediate(id);}});returnid;};
The text was updated successfully, but these errors were encountered:
Actually I cannot reproduce it with the same script file in local website
I will try to compile a file without minifying it and the get the stack trace
Original error message is
l is not a function
pointing to the following minified code:After generating a not minified file, I found the following function:
The text was updated successfully, but these errors were encountered: