/** * * @param x * @returns {boolean} */ export function isDigit(x: any): boolean { return x >= '0' && x <= '9'; }