UNPKG

async-validate

Version:

Asynchronous validation for node and the browser

14 lines (12 loc) 216 B
var schema = { type: 'object', fields: { name: function(cb) { this.raise( this.reasons.required, '%s is a required field', this.field); cb(); } } } module.exports = schema;