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.
		
		
		
		
			
				
					12 lines
				
				364 B
			
		
		
			
		
	
	
					12 lines
				
				364 B
			| 
											11 months ago
										 | 'use strict'; | ||
|  | var isObject = require('../internals/is-object'); | ||
|  | 
 | ||
|  | var floor = Math.floor; | ||
|  | 
 | ||
|  | // `IsIntegralNumber` abstract operation
 | ||
|  | // https://tc39.es/ecma262/#sec-isintegralnumber
 | ||
|  | // eslint-disable-next-line es/no-number-isinteger -- safe
 | ||
|  | module.exports = Number.isInteger || function isInteger(it) { | ||
|  |   return !isObject(it) && isFinite(it) && floor(it) === it; | ||
|  | }; |