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
lib/index.js文件中的Array.apply(null, {length: 12})代码在Chrome 17版本上会报错:TypeError:Function.prototype.apply:Arguments list has wrong type.
Array.apply(null, {length: 12})
Array.apply的第二个参数应该是一个数组,如果只有一个参数值,可以使用call方法。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
lib/index.js文件中的
Array.apply(null, {length: 12})
代码在Chrome 17版本上会报错:TypeError:Function.prototype.apply:Arguments list has wrong type.Array.apply的第二个参数应该是一个数组,如果只有一个参数值,可以使用call方法。
The text was updated successfully, but these errors were encountered: