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.
		
		
		
		
		
			
		
			
				
					
					
						
							13 lines
						
					
					
						
							440 B
						
					
					
				
			
		
		
	
	
							13 lines
						
					
					
						
							440 B
						
					
					
				var $ = require('../internals/export'); | 
						|
var from = require('../internals/array-from'); | 
						|
var checkCorrectnessOfIteration = require('../internals/check-correctness-of-iteration'); | 
						|
 | 
						|
var INCORRECT_ITERATION = !checkCorrectnessOfIteration(function (iterable) { | 
						|
  Array.from(iterable); | 
						|
}); | 
						|
 | 
						|
// `Array.from` method | 
						|
// https://tc39.github.io/ecma262/#sec-array.from | 
						|
$({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, { | 
						|
  from: from | 
						|
});
 | 
						|
 |