UNPKG

reakit-utils

Version:

Reakit utils

9 lines (7 loc) 223 B
import { isInteger } from "../isInteger"; test("isInteger", () => { expect(isInteger(1)).toBe(true); expect(isInteger("1")).toBe(true); expect(isInteger(1.5)).toBe(false); expect(isInteger("1.5")).toBe(false); });