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

penseur

Package Overview
Dependencies
Maintainers
1
Versions
103
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

penseur - npm Package Compare versions

Comparing version 7.5.0 to 7.6.0

9

lib/db.js

@@ -500,4 +500,7 @@ 'use strict';

run(request, callback) {
run(request /* options, callback */) {
const options = arguments.length === 3 ? arguments[1] : {};
const callback = arguments.length === 3 ? arguments[2] : arguments[1];
// Extract table name from ReQL object

@@ -515,6 +518,6 @@

return this._run(request, table, 'run', null, callback);
return this._run(request, options, table, 'run', null, callback);
}
_run(request, table, action, inputs, callback, next) {
_run(request, options, table, action, inputs, callback, next) {

@@ -521,0 +524,0 @@ if (!this._connection) {

@@ -398,3 +398,3 @@ 'use strict';

return this._db._run(request, this.name, action, inputs, callback, next);
return this._db._run(request, {}, this.name, action, inputs, callback, next);
}

@@ -401,0 +401,0 @@

{
"name": "penseur",
"description": "Lightweight RethinkDB wrapper",
"version": "7.5.0",
"version": "7.6.0",
"author": "Eran Hammer <eran@hammer.io> (http://hueniverse.com)",

@@ -6,0 +6,0 @@ "repository": "git://github.com/hueniverse/penseur",

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