Skip to main content
Module

x/rambda/source/_internals/_isInteger.js

Faster and smaller alternative to Ramda
Go to Latest
File
export function _isInteger(n) { return n << 0 === n}
export default Number.isInteger || _isInteger