mirror of
https://github.com/youzan/vant.git
synced 2026-03-06 02:06:58 +08:00
4 lines
83 B
TypeScript
4 lines
83 B
TypeScript
export function isNumber(value: string): boolean {
|
|
return /^\d+$/.test(value);
|
|
}
|