UNPKG

async-validate

Version:

Asynchronous validation for node and the browser

13 lines (11 loc) 239 B
var email = require('../email') , schema = { type: 'object', fields: { email: [ {type: 'string', required: true}, {type: 'string', pattern: email} ] } } module.exports = schema;