Compare commits

...

2 Commits

@ -56,7 +56,7 @@ module.exports = function (alternatives) {
} else if (arguments.length > 1) {
throw new Error(`Only one argument is accepted; maybe you forgot to wrap the different alternatives into an array?`);
} else {
return combinator((value, applyValidators) => {
return combinator((value, applyValidators, context) => {
let allErrors = [];
for (let alternative of alternatives) {
@ -87,7 +87,7 @@ module.exports = function (alternatives) {
return hasNestedPaths(error);
});
if (nestedErrors.length > 0) {
if (!context.__validatemNoHeuristics && nestedErrors.length > 0) {
let sameOrigin = areErrorsFromSameOrigin(nestedErrors);
if (sameOrigin || nestedErrors.length === 1) {

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

Loading…
Cancel
Save