 c177363a19
			
		
	
	c177363a19
	
	
	
		
			
			🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			19 lines
		
	
	
		
			408 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			408 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| var getPolyfill = require('./polyfill');
 | |
| var define = require('define-properties');
 | |
| 
 | |
| var getIteratorPolyfill = require('../Iterator/polyfill');
 | |
| 
 | |
| module.exports = function shimIteratorZip() {
 | |
| 	var $Iterator = getIteratorPolyfill();
 | |
| 	var polyfill = getPolyfill();
 | |
| 	define(
 | |
| 		$Iterator,
 | |
| 		{ zip: polyfill },
 | |
| 		{ zip: function () { return $Iterator.zip !== polyfill; } }
 | |
| 	);
 | |
| 
 | |
| 	return polyfill;
 | |
| };
 |