Cleanup jsdoc

This commit is contained in:
veeck
2021-01-06 13:17:39 +01:00
committed by rejas
parent 6fadc76fe3
commit 8c83dc9494
3 changed files with 8 additions and 4 deletions

View File

@@ -440,7 +440,6 @@ var MM = (function () {
* Removes a module instance from the collection.
*
* @param {object} module The module instance to remove from the collection.
*
* @returns {Module[]} Filtered collection of modules.
*/
var exceptModule = function (module) {

View File

@@ -14,6 +14,13 @@ const helmet = require("helmet");
const Log = require("./logger.js");
const Utils = require("./utils.js");
/**
* Server
*
* @param {object} config The MM config
* @param {Function} callback Function called when done.
* @class
*/
function Server(config, callback) {
const port = process.env.MM_PORT || config.port;