mirror of
https://github.com/crazy-max/ghaction-upx.git
synced 2025-09-23 18:15:46 -06: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;
|
|
};
|