UNPKG

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