mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-16 03:18:11 +00:00
6 lines
130 B
TypeScript
6 lines
130 B
TypeScript
const isNumeric = (value: any): boolean => {
|
|
return !isNaN(parseFloat(value)) && isFinite(value);
|
|
};
|
|
|
|
export default isNumeric;
|