index.js 344 B

12345678910111213141516171819202122
  1. const {
  2. buildCheckFunction,
  3. check,
  4. body,
  5. cookie,
  6. header,
  7. param,
  8. query
  9. } = require('./validation-chain-builders');
  10. module.exports = {
  11. buildCheckFunction,
  12. check,
  13. body,
  14. cookie,
  15. header,
  16. param,
  17. query,
  18. checkSchema: require('./schema'),
  19. oneOf: require('./one-of'),
  20. validationResult: require('./validation-result')
  21. };