Skip to main content
Module

x/ramda/internal/_isInteger.js

:ram: Practical functional Javascript
Very Popular
Go to Latest
File
/** * Determine if the passed argument is an integer. * * @private * @param {*} n * @category Type * @return {Boolean} */export default Number.isInteger || function _isInteger(n) { return (n << 0) === n;};