Files: fb81367d486581606650c09ad0515087bdfdc740 / poll / sync / isPoll.js
548 bytesRaw
1 | const validator = require('is-my-json-valid') |
2 | const schema = require('../schema/poll') |
3 | const isPollContent = 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 isPoll (obj) { |
9 | const result = isPollContent(getMsgContent(obj)) |
10 | |
11 | // exposes error messages provided by is-my-json-valid |
12 | isPoll.errors = isPollContent.errors |
13 | |
14 | return result |
15 | } |
16 | } |
17 |
Built with git-ssb-web