We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Regexps in this fn https://github.com/ermouth/jQuery.my/blob/master/Release/1.2/jquerymy-1.2.4.js#L727 may produce enormously deep recursion and exhaust js machine stack.
Minor bug, this function is never used during normal runtime.
The text was updated successfully, but these errors were encountered:
Takes place in Chrome cause V8 reflector behaves in a strange way, and this behavior seems to vary from version to version:
(new Function('a','return a')).toString() --> "function anonymous(a /**/) { return a }"
but
(function(a){return a}).toString() --> "function (a){return a}"
Sorry, something went wrong.
1.2.5
03066d6
Fix for #24, #25
Fixed in 1.2.5
No branches or pull requests
Regexps in this fn https://github.com/ermouth/jQuery.my/blob/master/Release/1.2/jquerymy-1.2.4.js#L727 may produce enormously deep recursion and exhaust js machine stack.
Minor bug, this function is never used during normal runtime.
The text was updated successfully, but these errors were encountered: