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
Following up from an xtend issue... IOS 5 versions of mobile Safari will incorrectly iterate over Function.prototype.
Function.prototype
function Foo() {} Foo.a = function(){}; Object.keys(Foo); // => ['a', 'prototype'] instead of ['a']
If you're interested in addressing it, libs like YUI and Lo-Dash tackle this issue.
The text was updated successfully, but these errors were encountered:
Object.keys
Adding an iOS 5 mobile Safari test per #2
af7db63
f202c22
constructor
Attempting to fix the FF < 3.6 dontEnum bug.
391bb40
d7caf81
ljharb
No branches or pull requests
Following up from an xtend issue...
IOS 5 versions of mobile Safari will incorrectly iterate over
Function.prototype
.If you're interested in addressing it, libs like YUI and Lo-Dash tackle this issue.
The text was updated successfully, but these errors were encountered: