UNPKG

util-ex

Version:

Browser-friendly enhanced util fully compatible with standard node.js

5 lines (4 loc) 171 B
export const isInt = Number.isInteger || function (value) { return typeof value === "number" && isFinite(value) && Math.floor(value) === value; }; export default isInt;