blob: f8228bc87ddbae17efe296d4e4e5b2a40f142b31 [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
description: >
Array.prototype.some - return value of callbackfn is an empty
string
---*/
var accessed = false;
function callbackfn(val, idx, obj) {
accessed = true;
return "";
}
assert.sameValue([11].some(callbackfn), false, '[11].some(callbackfn)');
assert(accessed, 'accessed !== true');