UNPKG

@modern-kit/utils

Version:
9 lines (7 loc) 188 B
function isAlphanumeric(value) { if (!value) return false; const regex = /^[a-zA-Z0-9]*$/; return regex.test(value); } export { isAlphanumeric }; //# sourceMappingURL=index.mjs.map