index.ts 155 B

12345
  1. // @ts-nocheck
  2. /**判断字符串是否表示一个数值*/
  3. export function isNumeric(value: string | number) {
  4. return /^(-)?\d+(\.\d+)?$/.test(value);
  5. }