UNPKG

@mub22/validity

Version:

Lightweight JavaScript validation library inspired by Laravel's rule syntax. Validate fields and forms easily with built-in rules and error messages.

5 lines (4 loc) 148 B
export default function email(value) { const regex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/; return typeof value === "string" && regex.test(value); }