UNPKG

node-input-validator

Version:

validation library for nodejs, inspired by laravel.

10 lines (7 loc) 176 B
const { reallyEmpty } = require('../lib/empty'); module.exports = async function required(field, value) { if (reallyEmpty(value)) { return false; } return true; };