Socket
Socket
Sign inDemoInstall

knex

Package Overview
Dependencies
Maintainers
1
Versions
252
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

knex - npm Package Compare versions

Comparing version 0.2.4 to 0.2.5

8

knex.js

@@ -1,2 +0,2 @@

// Knex.js 0.2.4
// Knex.js 0.2.5
//

@@ -26,3 +26,3 @@ // (c) 2013 Tim Griesser

// Keep in sync with package.json
Knex.VERSION = '0.2.4';
Knex.VERSION = '0.2.5';

@@ -49,5 +49,5 @@ // Methods common to both the `Grammar` and `SchemaGrammar` interfaces,

return this._promise.then(function(resp) {
callback(null, resp);
if (callback) callback(null, resp);
}, function(err) {
callback(err, null);
if (callback) callback(err, null);
}).then(null, function(err) {

@@ -54,0 +54,0 @@ setTimeout(function() { throw err; }, 0);

{
"name": "knex",
"version": "0.2.4",
"version": "0.2.5",
"description": "A query builder for Postgres, MySQL and SQLite3, designed to be flexible, portable, and fun to use.",

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

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