@bluealba/microservices-toolkit
Advanced tools
Comparing version 1.5.3 to 1.5.4
{ | ||
"name": "@bluealba/microservices-toolkit", | ||
"version": "1.5.3", | ||
"version": "1.5.4", | ||
"description": "Library that contains common elements used in microservices", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -47,2 +47,3 @@ "use strict"; | ||
case "postgres": | ||
return sequentialPlaceholderGenerator.bind(null, "$"); | ||
case "snowflake": | ||
@@ -63,6 +64,6 @@ return sequentialPlaceholderGenerator; | ||
function* sequentialPlaceholderGenerator() { | ||
function* sequentialPlaceholderGenerator(placeholderIdentifier = ":") { | ||
let c = 1; | ||
while (true) { | ||
yield `:${c++}`; | ||
yield `${placeholderIdentifier}${c++}`; | ||
} | ||
@@ -69,0 +70,0 @@ } |
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
19182
495