14 lines
362 B
JavaScript
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;
|