2015-01-08 00:37:01 -08:00
|
|
|
define([], function() {
|
|
|
|
|
|
|
|
|
|
/**
|
2015-12-16 17:53:20 -08:00
|
|
|
* A specialized version of `_.some` for arrays without support for iteratee
|
|
|
|
|
* shorthands.
|
2015-01-08 00:37:01 -08:00
|
|
|
*
|
|
|
|
|
* @private
|
2016-05-21 00:48:34 -07:00
|
|
|
* @param {Array} [array] The array to iterate over.
|
2015-01-08 00:37:01 -08:00
|
|
|
* @param {Function} predicate The function invoked per iteration.
|
2016-03-26 00:00:01 -07:00
|
|
|
* @returns {boolean} Returns `true` if any element passes the predicate check,
|
|
|
|
|
* else `false`.
|
2015-01-08 00:37:01 -08:00
|
|
|
*/
|
|
|
|
|
function arraySome(array, predicate) {
|
|
|
|
|
var index = -1,
|
2016-10-30 20:06:57 -07:00
|
|
|
length = array == null ? 0 : array.length;
|
2015-01-08 00:37:01 -08:00
|
|
|
|
|
|
|
|
while (++index < length) {
|
|
|
|
|
if (predicate(array[index], index, array)) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return arraySome;
|
|
|
|
|
});
|