blob: 7a5d504106896dd766cef32d621bf2e2602495ff [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 a non-empty
string
---*/
function callbackfn(val, idx, obj) {
return "non-empty string";
}
assert([11].some(callbackfn), '[11].some(callbackfn) !== true');