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
[1,2,3].splice(1) returns [] on Safari 8.0.7 when using es5-shim
[1,2,3].splice(1)
[]
The text was updated successfully, but these errors were encountered:
ES6 makes changes to splice that the es5-shim doesn't attempt to comply with. In Safari 9 and 10, this returns [2, 3].
splice
[2, 3]
This should actually be a bug on es6-shim, not the es5-shim - could you file it there?
Sorry, something went wrong.
No branches or pull requests
[1,2,3].splice(1)
returns[]
on Safari 8.0.7 when using es5-shimThe text was updated successfully, but these errors were encountered: