mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
13 lines
272 B
TypeScript
13 lines
272 B
TypeScript
export function isNumeric(val: string): boolean {
|
|
return /^\d+(\.\d+)?$/.test(val);
|
|
}
|
|
|
|
export function isNaN(val: number): val is typeof NaN {
|
|
if (Number.isNaN) {
|
|
return Number.isNaN(val);
|
|
}
|
|
|
|
// eslint-disable-next-line no-self-compare
|
|
return val !== val;
|
|
}
|