mirror of
				https://github.com/1disk/edp445.git
				synced 2024-08-14 22:47:02 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			207 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			207 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict'
 | |
| module.exports = function (Yallist) {
 | |
|   Yallist.prototype[Symbol.iterator] = function* () {
 | |
|     for (let walker = this.head; walker; walker = walker.next) {
 | |
|       yield walker.value
 | |
|     }
 | |
|   }
 | |
| }
 |