UNPKG

form-genius

Version:

🚀 AI-powered, dynamic, and customizable form validation for Node.js. Supports unlimited fields, auto-detection, real-time validation, and AI-based corrections.

8 lines (6 loc) • 239 B
const urlRegex = require("url-regex"); module.exports = function validateURL(url) { return urlRegex({ strict: true }).test(url) ? { valid: true } : { valid: false, message: "Invalid URL format", suggestion: null }; };