This repository has been archived on 2025-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
Files
balabola-vk/src/utilities.ts
2022-10-20 17:32:46 +03:00

5 lines
154 B
TypeScript

function isNumber(value: string | number): boolean {
return ((value != null) &&
(value !== '') &&
!isNaN(Number(value.toString())));
}