UNPKG

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