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
If 'Array' type is extended like below, enumeration using for (var i in ...) doesn't work as expected.
for (var i in ...)
Array.prototype.foo = function() { console.log("hi"); } a = [1,2,3,4,5]; for (var i in a) { console.log(i); //foo will be enumerated }
This causes invalid regular expression error in validate_phone_iso3166 function.
validate_phone_iso3166
The text was updated successfully, but these errors were encountered:
24b7a20
Merge pull request #33 from foray1010/master
ea89134
Use every/some to replace for...in loop, this fixes #32
No branches or pull requests
If 'Array' type is extended like below, enumeration using
for (var i in ...)
doesn't work as expected.This causes invalid regular expression error in
validate_phone_iso3166
function.The text was updated successfully, but these errors were encountered: