UNPKG

valirator

Version:

Powerful javascript by schema validation tool

14 lines (12 loc) 336 B
/** * * @param value * @param moreThanProperty * @param obj * @returns {boolean} */ export default function moreThanPropertyRule(value, moreThanProperty, obj) { return value > obj[moreThanProperty]; } moreThanPropertyRule.ruleName = 'moreThanProperty'; moreThanPropertyRule.defaultMessage = 'must be greater than %{expected}';