blob: 5d6a3dccde8d149f824379a971f729f34cc0143e [file] [log] [blame]
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-array.prototype.some
es5id: 15.4.4.17-5-18
description: Array.prototype.some - Error object can be used as thisArg
---*/
var objError = new RangeError();
function callbackfn(val, idx, obj) {
return this === objError;
}
assert([11].some(callbackfn, objError), '[11].some(callbackfn, objError) !== true');