UNPKG

@surveycake/utils

Version:

SurveyCake Javascript Utils

9 lines (8 loc) 223 B
/** * @module validator.number */ /** * @param arg argument will be tested if it is integer or not. * @param signs */ export declare function isInteger(arg: number | string, signs?: '+-' | '+' | '-'): boolean;