Function: isAsciiDigits()
function isAsciiDigits(value: string): boolean;
Defined in: shared/utils/ascii.ts:28
Returns true when the string contains only ASCII digits.
Parametersโ
valueโ
string
Returnsโ
boolean
Remarksโ
Empty strings are rejected so callers can use this directly after trimming numeric key fragments or wire-format values.