Files: 20e2c40722bb439146e13f50e9c4c2e6811ab141 / errors / sync / isPostionError.js
449 bytesRaw
1 | const Validator = require('is-my-json-valid') |
2 | const schema = require('../schema/postionError') |
3 | const validator = Validator(schema, {verbose: true}) |
4 | |
5 | // server is not used here. Closure pattern is just for consistency of use with other functions. |
6 | module.exports = function isPositionError (obj) { |
7 | const result = validator(obj) |
8 | |
9 | // exposes error messages provided by is-my-json-valid |
10 | isPositionError.errors = validator.errors |
11 | |
12 | return result |
13 | } |
14 |
Built with git-ssb-web