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
Running the following code in PhantomJS:
var x = []; for (var y in x) { console.log(y) };
yields
find includes
in the console.
If the functions are set via Object.defineProperty, you can specify enumerable property (you don't actually have to; it defaults to false).
The text was updated successfully, but these errors were encountered:
fix: Polyfills are made non-enumerable #648. (#649)
1ab4629
Issue resolved, thanks for the contribution!
Sorry, something went wrong.
48d8703
No branches or pull requests
Running the following code in PhantomJS:
var x = []; for (var y in x) { console.log(y) };
yields
in the console.
If the functions are set via Object.defineProperty, you can specify enumerable property (you don't actually have to; it defaults to false).
The text was updated successfully, but these errors were encountered: