UNPKG

async-validate

Version:

Asynchronous validation for node and the browser

15 lines (13 loc) 232 B
var schema = { type: 'object', fields: { name: { type: 'string', required: true, pattern: /^[a-z]+$/, transform: function(value) { return value.trim(); } } } } module.exports = schema;