You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							28 lines
						
					
					
						
							587 B
						
					
					
				
			
		
		
	
	
							28 lines
						
					
					
						
							587 B
						
					
					
				| /**
 | |
|  * Obliterator Every Function
 | |
|  * ==========================
 | |
|  *
 | |
|  * Function taking an iterable and a predicate and returning whether all
 | |
|  * its items match the given predicate.
 | |
|  */
 | |
| var iter = require('./iter.js');
 | |
| 
 | |
| /**
 | |
|  * Every.
 | |
|  *
 | |
|  * @param  {Iterable} iterable  - Target iterable.
 | |
|  * @param  {function} predicate - Predicate function.
 | |
|  * @return {boolean}
 | |
|  */
 | |
| module.exports = function every(iterable, predicate) {
 | |
|   var iterator = iter(iterable);
 | |
| 
 | |
|   var step;
 | |
| 
 | |
|   while (((step = iterator.next()), !step.done)) {
 | |
|     if (!predicate(step.value)) return false;
 | |
|   }
 | |
| 
 | |
|   return true;
 | |
| };
 |