UNPKG

node-input-validator

Version:

validation library for nodejs, inspired by laravel.

8 lines (6 loc) 166 B
module.exports = async function arrayUnique(field, value) { if (!Array.isArray(value)) { return false; } return (new Set(value)).size === value.length; };