mirror of
https://github.com/BlossomiShymae/clean-cuts.git
synced 2025-12-06 10:10:47 +01:00
5 lines
192 B
TypeScript
5 lines
192 B
TypeScript
export default function isIsNumeric() {
|
|
return {
|
|
isNumeric: (num: any) => (typeof(num) === 'number' || typeof(num) === "string" && num.trim() !== '') && !isNaN(num as number)
|
|
}
|
|
} |