We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7010f4d commit 0d3334cCopy full SHA for 0d3334c
index.js
@@ -29,24 +29,6 @@ exports.init = function(opts) {
29
}
30
};
31
32
- exports.getFrameworkName = function getFrameworkName() {
33
- if (!opts.framework) { return null; }
34
- return opts.framework.name || null;
35
- };
36
-
37
- exports.getFrameworkVersion = function getFrameworkVersion() {
38
39
40
- try {
41
- var frameworkVersion = opts.framework.version.match(REGEX_VERSION);
42
- if (frameworkVersion && frameworkVersion[0]) {
43
- return frameworkVersion[0];
44
- }
45
- } catch (error) {
46
- return null;
47
48
49
50
exports.getDatabaseType = function getDatabaseType() {
51
return 'MongoDB';
52
0 commit comments