How do I determine if a string is numeric in Office Scripts if the string cannot have any letters in it? For example, 'a1234' should not be a number. The Number methods like parsefloat, parseInt, IsInteger, and isNan don't help because they accept strings that have any numbers in them when wrapped in Number (Number(value) or +value) or don't accept strings.