UNPKG

vanilla-type-check

Version:
10 lines (9 loc) 292 B
/** * Check if a value is numeric. * Strings like `"123"` are considered numbers. * Note that `Infinity` is not a number. * * @param value value to check * @returns `true` if `obj` is a numeric value */ export declare function isNumeric(value: any): value is number | string;