datasquirel/dist/package-shared/utils/endConnection.js
Benjamin Toby 7e8bb37c09 Updates
2025-07-05 14:59:30 +01:00

12 lines
282 B
JavaScript

/**
* # End MYSQL Connection
*/
function endConnection(connection) {
if (connection.state !== "disconnected") {
connection.end((err) => {
console.log(err === null || err === void 0 ? void 0 : err.message);
});
}
}
export default endConnection;