UNPKG

@thi.ng/checks

Version:
4 lines (3 loc) 160 B
export const isAlpha = (x) => /^[a-z]+$/i.test(x); export const isAlphaNum = (x) => /^[a-z0-9]+$/i.test(x); export const isNumeric = (x) => /^[0-9]+$/.test(x);