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