datasquirel/dist/package-shared/utils/endConnection.js
Benjamin Toby 186cc76ffb Updates
2025-01-12 18:19:20 +01:00

14 lines
362 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);
});
}
}
exports.default = endConnection;