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
						
					
					
						
							377 B
						
					
					
				
			
		
		
	
	
							13 lines
						
					
					
						
							377 B
						
					
					
				| 'use strict';
 | |
| 
 | |
| var MAX_SAFE_INTEGER = require('math-intrinsics/constants/maxSafeInteger');
 | |
| 
 | |
| var ToIntegerOrInfinity = require('./ToIntegerOrInfinity');
 | |
| 
 | |
| module.exports = function ToLength(argument) {
 | |
| 	var len = ToIntegerOrInfinity(argument);
 | |
| 	if (len <= 0) { return 0; } // includes converting -0 to +0
 | |
| 	if (len > MAX_SAFE_INTEGER) { return MAX_SAFE_INTEGER; }
 | |
| 	return len;
 | |
| };
 |