This commit is contained in:
2026-04-02 17:50:10 +08:00
parent 60697d80be
commit ce0aa4f789
373 changed files with 82520 additions and 46 deletions

View File

@@ -0,0 +1,47 @@
'use strict';
/**
* methods a collection must implement
*/
const methods = [
'find',
'findOne',
'updateMany',
'updateOne',
'replaceOne',
'countDocuments',
'estimatedDocumentCount',
'distinct',
'findOneAndDelete',
'findOneAndReplace',
'findOneAndUpdate',
'aggregate',
'findCursor',
'deleteOne',
'deleteMany'
];
/**
* Collection base class from which implementations inherit
*/
function Collection() {}
for (let i = 0, len = methods.length; i < len; ++i) {
const method = methods[i];
Collection.prototype[method] = notImplemented(method);
}
module.exports = exports = Collection;
Collection.methods = methods;
/**
* creates a function which throws an implementation error
*/
function notImplemented(method) {
return function() {
throw new Error('collection.' + method + ' not implemented');
};
}