I\'m hoping there\'s something in the same conceptual space as the old VB6 IsNumeric() function?
IsNumeric()
It is not valid for TypeScript as:
declare function isNaN(number: number): boolean;
For TypeScript you can use:
/^\d+$/.test(key)