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
These tests pass just fine in IE 6 and 7.
Relates to #114.
The text was updated successfully, but these errors were encountered:
This was one persons study and conclusions. https://social.msdn.microsoft.com/Forums/ie/en-US/6e946d03-e09f-4b22-a4dd-cd5e276bf05a/splice-function-in-ie8-is-broken?forum=iewebdevelopment
Also, IE <9 has a bug/difference where the second argument is required rather than optional. I don't think you have any tests for this?
var array = [0, 1, 2]; array.splice(0); alert(array);
http://stackoverflow.com/questions/8332969/ie-8-splice-not-working
So, it looks like 2 tests and fixes.
IE8 should just use the full replacement, I don't think you can do a partial reasonably?
IE<8 requires a partial for the second argument, when it is not supplied.
Sorry, something went wrong.
Add tests for Array#splice when only the first argument is provided.
a916f6e
es-shims#341
ljharb
No branches or pull requests
These tests pass just fine in IE 6 and 7.
Relates to #114.
The text was updated successfully, but these errors were encountered: