mirror of
https://github.com/youzan/vant.git
synced 2025-10-16 16:04:04 +00:00
4 lines
89 B
TypeScript
4 lines
89 B
TypeScript
export default function number(value: string): boolean {
|
|
return /^\d+$/.test(value);
|
|
}
|