UNPKG

vuito

Version:

Simple, lightweight, isomorphic, and template-based validation library.

10 lines (8 loc) 297 B
function onlyText (value) { const rgx = /^[a-z0-9 ]+$/i; if (!String.prototype.normalize) return !value || rgx.test(value); return !value || rgx.test(value.normalize('NFD').replace(/[\u0300-\u036f]/g, '')); } export { onlyText as o }; //# sourceMappingURL=onlyText.esm.js.map