Files
Suggestion/node_modules/mongoose/lib/helpers/error/combinePathErrors.js
爱喝水的木子 00b48da363 fix
2026-03-02 15:35:39 +08:00

23 lines
386 B
JavaScript

'use strict';
/*!
* ignore
*/
module.exports = function combinePathErrors(err) {
const keys = Object.keys(err.errors || {});
const len = keys.length;
const msgs = [];
let key;
for (let i = 0; i < len; ++i) {
key = keys[i];
if (err === err.errors[key]) {
continue;
}
msgs.push(key + ': ' + err.errors[key].message);
}
return msgs.join(', ');
};