Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2022-02-24 17:03:29 +00:00
parent 4e02f8e87a
commit 0da815296a
500 changed files with 538 additions and 544 deletions

View file

@ -303,8 +303,7 @@ const all = [
},
];
module.exports = {};
all.forEach((error) => {
module.exports[error.errno] = error.description;
});
module.exports = all.reduce((obj, error) => ({
...obj,
[error.errno]: error.description,
}));