mirror of
https://github.com/youzan/vant.git
synced 2026-05-05 01:00:55 +08:00
4 lines
91 B
TypeScript
4 lines
91 B
TypeScript
export function isNumber(value: string): boolean {
|
|
return /^\d+(\.\d+)?$/.test(value);
|
|
}
|