datasquirel/dist/package-shared/utils/endConnection.js
2025-07-05 16:14:11 +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;