as-services/libs/common/oapi/formats/string-integer.js

6 lines
122 B
JavaScript

module.exports = function ({ validators: { isInteger } }) {
return {
type: "number",
validate: isInteger,
}
}