2019-02-07 13:07:33 +08:00

4 lines
89 B
TypeScript

export default function number(value: string): boolean {
return /^\d+$/.test(value);
}