First Commit

This commit is contained in:
SowinskiBraeden committed 2020-11-25 09:10:06 -08:00
commit 601e886c14
2123 files changed
+334815

No files matched your search

+23
View File
@@ -0,0 +1,23 @@
'use strict';
const OperationBase = require('./operation').OperationBase;
const indexInformation = require('./common_functions').indexInformation;
class IndexInformationOperation extends OperationBase {
constructor(db, name, options) {
super(options);
this.db = db;
this.name = name;
}
execute(callback) {
const db = this.db;
const name = this.name;
const options = this.options;
indexInformation(db, name, options, callback);
}
}
module.exports = IndexInformationOperation;