New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

sql-bricks

Package Overview
Dependencies
Maintainers
1
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sql-bricks - npm Package Compare versions

Comparing version

to
2.0.1

2

package.json
{
"name": "sql-bricks",
"version": "2.0.0",
"version": "2.0.1",
"author": "Peter Rust <peter@cornerstonenw.com>",

@@ -5,0 +5,0 @@ "description": "Transparent, Schemaless SQL Generation",

@@ -26,2 +26,6 @@ (function() {

}
sql.setDefaultOpts = setDefaultOpts;
function setDefaultOpts(opts) {
default_opts = _.extend(default_opts, opts);
}
sql.prototype.toString = function toString(opts) {

@@ -80,2 +84,3 @@ // replacer(match, [capture1, capture2, ...,] offset, string)

str = str.replace(/\?/g, replacer);
else if (opts.placeholder == '') {}
else

@@ -82,0 +87,0 @@ throw new Error('Unsupported placeholder: "' + opts.placeholder + '"');