UNPKG

node-rigorous

Version:
12 lines (9 loc) 259 B
const helperFormatChecker = require('./format_checker'); module.exports = () => { return { validator: (v) => { return !helperFormatChecker.isNil(v); }, message: props => `${props.value} should not be null`, }; };