UNPKG

@gpa-gemstone/helper-functions

Version:
8 lines (7 loc) 309 B
/** * IsInteger checks if value passed through is an integer, returning a true or false * @param value is the input passed through the IsInteger function * @returns Function will return true if value is an integer, false otherwise */ declare function IsInteger(value: any): boolean; export { IsInteger };