mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-02-28 12:50:38 +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;
|