UNPKG

node-input-validator

Version:

validation library for nodejs, inspired by laravel.

12 lines (9 loc) 186 B
module.exports = async function _in(field, value, args) { if (!Array.isArray(args)) { args = [args]; } if (args.indexOf(value) < 0) { return false; } return true; };