UNPKG

node-input-validator

Version:

validation library for nodejs, inspired by laravel.

12 lines (8 loc) 203 B
module.exports = ({ value, attr }, v) => { const otherInput = `${attr}Confirmation`; const otherValue = v.inputs[otherInput]; if (otherValue === value) { return true; } return false; };