6 lines
122 B
JavaScript
6 lines
122 B
JavaScript
module.exports = function ({ validators: { isInteger } }) {
|
|
return {
|
|
type: "number",
|
|
validate: isInteger,
|
|
}
|
|
}
|