initial commit

This commit is contained in:
2022-10-20 17:32:46 +03:00
commit 4673348f38
20 changed files with 3275 additions and 0 deletions

5
src/utilities.ts Normal file
View File

@ -0,0 +1,5 @@
function isNumber(value: string | number): boolean {
return ((value != null) &&
(value !== '') &&
!isNaN(Number(value.toString())));
}