UNPKG

@1771technologies/lytenyte-pro

Version:

Blazingly fast headless React data grid with 100s of features.

6 lines (5 loc) 160 B
import { isAlpha } from "./is-alpha.js"; import { isDigit } from "./is-digit.js"; export function isAlphaNumeric(ch) { return isAlpha(ch) || isDigit(ch); }