15 lines
320 B
JavaScript
15 lines
320 B
JavaScript
// @ts-check
|
|
|
|
const mysql = require("mysql");
|
|
|
|
/**
|
|
* @param {mysql.Connection} connection - the active MYSQL connection
|
|
*/
|
|
module.exports = function endConnection(connection) {
|
|
if (connection.state !== "disconnected") {
|
|
connection.end((err) => {
|
|
console.log(err?.message);
|
|
});
|
|
}
|
|
};
|