UNPKG

@n3okill/utils

Version:
7 lines (6 loc) 211 B
/** * Check if argument is numeric type, check if is number or a string that can be converted into number * @param arg * @returns {boolean} */ export declare function isNumeric(arg: unknown): arg is number;