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