UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

3 lines 108 B
export function isInteger(value) { return value !== undefined && Math.floor(value) === Math.ceil(value); }