Merge pull request #3 from jambonz/fix/missing_utils

feat: export validate verb function
This commit is contained in:
Dave Horton
2023-02-13 21:34:33 -05:00
committed by GitHub

View File

@@ -110,4 +110,4 @@ function validateVerb(name, data, logger) {
if (required.length > 0) throw new Error(`${name}: missing value for ${required}`);
}
module.exports = { normalizeJambones, validate };
module.exports = { normalizeJambones, validate, validateVerb };