@bluealba/microservices-toolkit
Advanced tools
Comparing version 1.5.5 to 1.5.6
{ | ||
"name": "@bluealba/microservices-toolkit", | ||
"version": "1.5.5", | ||
"version": "1.5.6", | ||
"description": "Library that contains common elements used in microservices", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -8,3 +8,4 @@ "use strict"; | ||
// extract named params from sql | ||
let matches = sql.matchAll(/:([a-zA-Z0-9]{1,})/g); | ||
let regExp = dialect === "postgres" ? /(?<!:):([a-zA-Z0-9]{1,})/g : /:([a-zA-Z0-9]{1,})/g; | ||
let matches = sql.matchAll(regExp); | ||
let namedParams = []; | ||
@@ -11,0 +12,0 @@ for (let m of matches) { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
19615
505