MCProHosting/artisan-validator

View on GitHub
lib/rules/lessThan.js

Summary

Maintainability
A
0 mins
Test Coverage
var _ = require('lodash');

module.exports = function (key, value, max) {
    return _.isNumber(value) && value < max;
};