datasquirel/dist/package-shared/utils/endConnection.js
Benjamin Toby a3561da53d Updates
2025-01-10 20:35:05 +01:00

14 lines
361 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/**
* # End MYSQL Connection
*/
function endConnection(connection) {
if (connection.state !== "disconnected") {
connection.end((err) => {
console.log(err === null || err === void 0 ? void 0 : err.message);
});
}
}
module.exports = endConnection;