Fix Array errors in Opera.

This commit is contained in:
Tobie Langel 2008-12-11 17:00:45 +01:00
parent e5f7cac36f
commit 1395330440
1 changed files with 2 additions and 3 deletions

View File

@ -172,7 +172,6 @@ Array.from = $A;
});
// use native browser JS 1.6 implementation if available
if (!'indexOf' in arrayProto) arrayProto.indexOf = indexOf;
if (!'lastIndexOf' in arrayProto) arrayProto.lastIndexOf = lastIndexOf;
if (!'concat' in arrayProto) arrayProto.concat = concat;
if (!arrayProto.indexOf) arrayProto.indexOf = indexOf;
if (!arrayProto.lastIndexOf) arrayProto.lastIndexOf = lastIndexOf;
})();