mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-24 09:25:15 +00:00
11 lines
193 B
JavaScript
11 lines
193 B
JavaScript
|
'use strict';
|
||
|
|
||
|
module.exports = function every(array, predicate) {
|
||
|
for (var i = 0; i < array.length; i += 1) {
|
||
|
if (!predicate(array[i], i, array)) {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
return true;
|
||
|
};
|