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