🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@kenyip/mysql

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kenyip/mysql - npm Package Compare versions

Comparing version
0.0.2
to
0.0.3
+1
-1
package.json
{
"name": "@kenyip/mysql",
"version": "0.0.2",
"version": "0.0.3",
"description": "A fully featured MySql client 'mysql' with Promise support.",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -54,5 +54,9 @@ "use strict";

MySqlClass.prototype.promiseQuery = function (sql, values, options) {
if (options && options.retry) {
const retryPromise = options?.retry == false ? false : true;
if (retryPromise) {
return retry(() => this._promiseQuery(sql, values), options);
}
return this._promiseQuery(sql, values);

@@ -59,0 +63,0 @@ };