Initial Commit

This commit is contained in:
2020-07-08 15:37:09 +02:00
commit 549ecd137f
1746 changed files with 292109 additions and 0 deletions

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

@@ -0,0 +1,30 @@
/*!
* Module dependencies.
*/
'use strict';
const MongooseError = require('./');
class MissingSchemaError extends MongooseError {
/*!
* MissingSchema Error constructor.
* @param {String} name
*/
constructor(name) {
const msg = 'Schema hasn\'t been registered for model "' + name + '".\n'
+ 'Use mongoose.model(name, schema)';
super(msg);
}
}
Object.defineProperty(MissingSchemaError.prototype, 'name', {
value: 'MissingSchemaError'
});
/*!
* exports
*/
module.exports = MissingSchemaError;