UNPKG

179 BTypeScriptView Raw
1/**
2 * Returns whether the payload is a number (but not NaN)
3 *
4 * This will return `false` for `NaN`!!
5 */
6export declare function isNumber(payload: unknown): payload is number;