UNPKG

cheke

Version:

Express request validator with object's style response body and inspired by Laravel's Validator

7 lines (5 loc) 197 B
const notStringMessage = require('../messages/notStringMessage'); module.exports = ({ value, label } = {}) => { if (typeof value === 'string') return false; return notStringMessage(label); };