Latest
function default
import { default } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/isInteger.js";

Checks if value is an integer.

Note: This method is based on Number.isInteger.

Examples

_.isInteger(3); // => true

_.isInteger(Number.MIN_VALUE); // => false

_.isInteger(Infinity); // => false

_.isInteger('3'); // => false

Parameters

value

The value to check.