Skip to content
Snippets Groups Projects
Commit 0360d749 authored by Brian Terlson's avatar Brian Terlson
Browse files

Merge pull request #280 from pvginkel/master

S15.4.4.4_A4.1 length enumerable should be checked on Array.prototype.concat
parents 9861dc2d 3663302c
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@ if (Array.prototype.concat.propertyIsEnumerable('length') !== false) {
//CHECK#2
var result = true;
for (var p in Array.concat){
for (var p in Array.prototype.concat){
if (p === "length") {
result = false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment