Initial commit

This commit is contained in:
Arnaud Nelissen
2021-07-16 10:18:13 +02:00
commit 3af7ddab06
5894 changed files with 590836 additions and 0 deletions

30
node_modules/mongoose/lib/error/objectExpected.js generated vendored Normal file
View File

@@ -0,0 +1,30 @@
/*!
* Module dependencies.
*/
'use strict';
const MongooseError = require('./');
class ObjectExpectedError extends MongooseError {
/**
* Strict mode error constructor
*
* @param {string} type
* @param {string} value
* @api private
*/
constructor(path, val) {
const typeDescription = Array.isArray(val) ? 'array' : 'primitive value';
super('Tried to set nested object field `' + path +
`\` to ${typeDescription} \`` + val + '` and strict mode is set to throw.');
this.path = path;
}
}
Object.defineProperty(ObjectExpectedError.prototype, 'name', {
value: 'ObjectExpectedError'
});
module.exports = ObjectExpectedError;