some progress

This commit is contained in:
Jonas_Jones 2023-03-30 20:40:42 +02:00
parent aea93a5527
commit e3c15bd288
1388 changed files with 306946 additions and 68323 deletions

32
node_modules/mongoose/lib/helpers/schema/idGetter.js generated vendored Normal file
View file

@ -0,0 +1,32 @@
'use strict';
/*!
* ignore
*/
module.exports = function addIdGetter(schema) {
// ensure the documents receive an id getter unless disabled
const autoIdGetter = !schema.paths['id'] &&
schema.paths['_id'] &&
schema.options.id;
if (!autoIdGetter) {
return schema;
}
schema.virtual('id').get(idGetter);
return schema;
};
/**
* Returns this documents _id cast to a string.
* @api private
*/
function idGetter() {
if (this._id != null) {
return String(this._id);
}
return null;
}