mirror of
https://github.com/youzan/vant.git
synced 2025-10-21 11:17:41 +00:00
4 lines
91 B
TypeScript
4 lines
91 B
TypeScript
export function isNumber(value: string): boolean {
|
|
return /^\d+(\.\d+)?$/.test(value);
|
|
}
|