UNPKG

@1771technologies/lytenyte-pro

Version:

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

5 lines (4 loc) 156 B
import { isDigit } from "./is-digit.js"; export function isHexDigit(ch) { return isDigit(ch) || (ch >= "a" && ch <= "f") || (ch >= "A" && ch <= "F"); }