"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;