UNPKG

gotta-validate

Version:

A POJO object validator for node, built with resources, promises, and testing in mind.

13 lines (10 loc) 191 B
'use strict'; function noWhiteSpace(name, val) { if (!val) { return; } if (/\s/g.test(val)) { return 'is not allowed to have spaces'; } } module.exports = noWhiteSpace;