UNPKG

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