You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
374 B
JavaScript

"use strict";
const ValidationError = require("@validatem/error");
const isRegex = require("is-regex");
module.exports = function (regex) {
if (isRegex(regex)) {
return function (value) {
if (!regex.test(value)) {
throw new ValidationError(`Must match format: ${regex}`);
}
};
} else {
throw new Error(`You must specify a regex to match against`);
}
};