Files: fa119a00e0a13307d66a09f8c482ae107ba31bdb / lib / permitted-opts.js
210 bytesRaw
1 | const pick = require('lodash.pick') |
2 | const PERMITTED_OPTS = 'title startDateTime location description image' |
3 | .split(' ') |
4 | |
5 | module.exports = function permittedOpts (opts) { |
6 | return pick(opts, PERMITTED_OPTS) |
7 | } |
8 |
Built with git-ssb-web