UNPKG

@gpa-gemstone/helper-functions

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