Add error code

master
Sven Slootweg 4 years ago
parent ab0889eb8b
commit 8458b93461

@ -5,6 +5,6 @@ const isString = require("is-string");
module.exports = function (value) {
if (!isString(value)) {
return new ValidationError("Must be a string");
return new ValidationError("Must be a string", { code: "validatem.is-string" });
}
};

Loading…
Cancel
Save