UNPKG

211 BJavaScriptView Raw
1const { GraphQLError } = require('graphql/error')
2const { isEmail } = require('validator')
3
4module.exports = (value) => {
5 if (isEmail(value)) return true
6
7 throw new GraphQLError('Must be in email format')
8}