15 lines
304 B
TypeScript
15 lines
304 B
TypeScript
import mysql from "mysql";
|
|
|
|
/**
|
|
* # End MYSQL Connection
|
|
*/
|
|
function endConnection(connection: mysql.Connection) {
|
|
if (connection.state !== "disconnected") {
|
|
connection.end((err) => {
|
|
console.log(err?.message);
|
|
});
|
|
}
|
|
}
|
|
|
|
module.exports = endConnection;
|