Compare commits

..

No commits in common. 'f6e92a461ce00896d27cf689dd7a589013eb840b' and 'f5616004627673deab72669d0406ff3e6c66e72e' have entirely different histories.

@ -20,7 +20,7 @@ function concat(arrays) {
module.exports = function wrapError(message, rules, options = {}) {
let preserveOriginalErrors = defaultValue(options.preserveOriginalErrors, false);
return combinator((value, applyValidators, context) => {
let validator = combinator((value, applyValidators, context) => {
let result = applyValidators(value, rules, context);
if (result.errors.length > 0) {
@ -76,4 +76,8 @@ module.exports = function wrapError(message, rules, options = {}) {
return result;
}
});
validator.callIfNull = true;
return validator;
};

@ -6,7 +6,7 @@
"validator",
"combinator"
],
"version": "0.1.2",
"version": "0.1.1",
"main": "index.js",
"repository": "http://git.cryto.net/validatem/wrap-error.git",
"author": "Sven Slootweg <admin@cryto.net>",

Loading…
Cancel
Save