Files
lsp/node_modules/mongodb/lib/operations/index_information.js
Arnaud Nelissen 3af7ddab06 Initial commit
2021-11-17 11:25:08 +01:00

24 lines
517 B
JavaScript

'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;