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

thinky

Package Overview
Dependencies
Maintainers
1
Versions
129
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

thinky - npm Package Compare versions

Comparing version 2.1.11 to 2.1.12

23

lib/query.js

@@ -101,4 +101,27 @@ var Promise = require('bluebird');

/**
* Bind Query.prototype.run() for later use
* @param {Object=} options The options passed to the driver's method `run`
* @param {Function=} callback
* @return {Function} return a `this` bound Query.prototype.run()
*/
Query.prototype.bindRun = function () {
var curriedArgs = Array.prototype.slice.call(arguments);
return Function.prototype.bind.apply( Query.prototype.run, [ this ].concat( curriedArgs ) );
}
/**
* Bind Query.prototype.execute() for later use
* @param {Object=} options The options passed to the driver's method `run`
* @param {Function=} callback
* @return {Function} return a `this` bound Query.prototype.execute()
*/
Query.prototype.bindExecute = function () {
var curriedArgs = Array.prototype.slice.call(arguments);
return Function.prototype.bind.apply( Query.prototype.execute, [ this ].concat( curriedArgs ) );
}
/**
* Internal method to execute a query. Called by `run` and `execute`.

@@ -105,0 +128,0 @@ * @param {Object} options The options passed to the driver's method `run`

2

package.json
{
"name": "thinky",
"version": "2.1.11",
"version": "2.1.12",
"description": "RethinkDB ORM for Node.js",

@@ -5,0 +5,0 @@ "main": "lib/thinky.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