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
functiondetect(){"use strict"//necessary for Safari to eliminate tail callsfunctionrecurse(N){if(N===0)return"JavaScriptCore";elsereturnrecurse(N-1)}try{returnrecurse(2**16)}catch(e){if(einstanceofRangeError)return"V8"elsereturn"SpiderMonkey"// here, `e instanceof InternalError` is true}}detect()
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: