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.
either/src/are-errors-from-same-origin.js

29 lines
870 B
JavaScript

"use strict";
const areArraysEqual = require("./are-arrays-equal");
module.exports = function areErrorsFromSameOrigin(errors) {
let referencePath = null;
function checkErrors(errors, basePath = []) {
return errors.every((error) => {
let absolutePath = basePath.concat(error.path);
if (referencePath == null) {
// Whatever we encounter first is the reference path. However, we don't return `true` here; even if we assume the error's own path to be correct (since it's the reference path...), the error may still have subErrors with a different path!
referencePath = absolutePath;
}
let subErrorsEqual = (error.subErrors != null)
? checkErrors(error.subErrors, absolutePath)
: true;
let selfEqual = areArraysEqual(referencePath, absolutePath);
return (selfEqual && subErrorsEqual);
});
}
return checkErrors(errors);
};