summaryrefslogtreecommitdiff
path: root/utils/str.ts
blob: cbbc26981dc3cbe90c32e747371c08fa29c30a07 (plain)
1
export const isNumeric = (symbol: string) => symbol <= "9" && symbol >= "0";