UNPKG

188 BJavaScriptView Raw
1const isAlpha = (x) => /^[a-z]+$/i.test(x);
2const isAlphaNum = (x) => /^[a-z0-9]+$/i.test(x);
3const isNumeric = (x) => /^[0-9]+$/.test(x);
4export {
5 isAlpha,
6 isAlphaNum,
7 isNumeric
8};