git ssb

0+

Piet / ssb-loomio



Tree: 9144ab97554ad603dd57ff8d50d81940ac397cc6

Files: 9144ab97554ad603dd57ff8d50d81940ac397cc6 / errors / sync / isPositionLateError.js

479 bytesRaw
1const Validator = require('is-my-json-valid')
2const schema = require('../schema/positionLateError')
3const validator = Validator(schema, {verbose: true})
4
5// server is not used here. Closure pattern is just for consistency of use with other functions.
6module.exports = function (server) {
7 return function isError (obj) {
8 const result = validator(obj)
9
10 // exposes error messages provided by is-my-json-valid
11 isError.errors = validator.errors
12
13 return result
14 }
15}
16

Built with git-ssb-web