UNPKG

asn1-ts

Version:

ASN.1 encoding and decoding, including BER, CER, and DER.

4 lines (3 loc) 148 B
export default function isNumericString(characterCode) { return ((characterCode >= 0x30 && characterCode <= 0x39) || characterCode === 0x20); }