mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-08 12:04:29 -05:00
18 lines
356 B
JavaScript
18 lines
356 B
JavaScript
import validator from 'express-validator';
|
|
|
|
export default function() {
|
|
return validator({
|
|
customValidators: {
|
|
matchRegex(param, regex) {
|
|
return regex.test(param);
|
|
},
|
|
isString(value) {
|
|
return typeof value === 'string';
|
|
},
|
|
isNumber(value) {
|
|
return typeof value === 'number';
|
|
}
|
|
}
|
|
});
|
|
}
|