initial commit
This commit is contained in:
5
src/utilities.ts
Normal file
5
src/utilities.ts
Normal file
@ -0,0 +1,5 @@
|
||||
function isNumber(value: string | number): boolean {
|
||||
return ((value != null) &&
|
||||
(value !== '') &&
|
||||
!isNaN(Number(value.toString())));
|
||||
}
|
Reference in New Issue
Block a user