Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sql-query

Package Overview
Dependencies
Maintainers
1
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sql-query - npm Package Compare versions

Comparing version 0.1.9 to 0.1.10

2

lib/Dialects/sqlite.js

@@ -29,3 +29,3 @@ var util = require("util");

case "boolean":
return val ? "true" : "false";
return val ? 1 : 0;
case "function":

@@ -32,0 +32,0 @@ return val(exports);

@@ -9,3 +9,3 @@ {

],
"version": "0.1.9",
"version": "0.1.10",
"license": "MIT",

@@ -12,0 +12,0 @@ "repository": {

@@ -52,3 +52,3 @@ var common = require('../common');

dialect.escapeVal(true),
"true"
"1"
);

@@ -58,3 +58,3 @@

dialect.escapeVal(false),
"false"
"0"
);
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc