UNPKG

@storm-stack/types

Version:

⚡ The storm-stack monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.

4 lines (3 loc) 180 B
import { isNumber } from "./is-number.mjs"; import { isString } from "./is-string.mjs"; export const isInteger = (value) => isNumber(value) && !isString(value) && value % 1 === 0;