 c177363a19
			
		
	
	c177363a19
	
	
	
		
			
			🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			10 lines
		
	
	
		
			232 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			232 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| var implementation = require('./implementation');
 | |
| 
 | |
| var $Iterator = require('../Iterator');
 | |
| 
 | |
| module.exports = function getPolyfill() {
 | |
| 	return typeof $Iterator.from === 'function' ? $Iterator.from : implementation;
 | |
| };
 |