UNPKG

297 BTypeScriptView Raw
1export = is_number;
2
3/**
4 * Will test to see if the argument is a valid number, excluding Infinity and NaN.
5 * @param num Any value that should be tested for being a number
6 * @returns true if the parameter is a valid number, otherwise false
7 */
8declare function is_number(num: unknown): boolean;