UNPKG

node-input-validator

Version:

validation library for nodejs, inspired by laravel.

8 lines (6 loc) 140 B
module.exports = async function alphaDash(field, value) { if (!(/^[A-Z0-9_-]+$/i.test(value))) { return false; } return true; };