Projekt

Obecné

Profil

Stáhnout (193 Bajtů) Statistiky
| Větev: | Revize:
1 3a515b92 cagy
'use strict';
2
3
module.exports = function every(array, predicate) {
4
	for (var i = 0; i < array.length; i += 1) {
5
		if (!predicate(array[i], i, array)) {
6
			return false;
7
		}
8
	}
9
	return true;
10
};