blob: 501906bf9a1e11aaff42d4ec2252f476a522ec34 [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-9
description: Array.prototype.some - Function Object can be used as thisArg
---*/
var objFunction = function () { };
function callbackfn(val, idx, obj) {
return this === objFunction;
}
assert([11].some(callbackfn, objFunction), '[11].some(callbackfn, objFunction) !== true');