mariadb-corporation / mariadb-connector-nodejs

MariaDB Connector/Node.js is used to connect applications developed on Node.js to MariaDB and MySQL databases. MariaDB Connector/Node.js is LGPL licensed.
GNU Lesser General Public License v2.1
366 stars 91 forks source link

Modify unneeded `Object.entries()` #220

Closed Jiralite closed 1 year ago

Jiralite commented 1 year ago

Whilst browsing through the source code, I noticed occurrences where objects were being destructured into [key, value] pairs which were redudant, as only the value would be referenced. This pull request resolves these redundancies.