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

co-rethinkdb

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

co-rethinkdb - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

16

index.js

@@ -29,4 +29,18 @@ var r = require('rethinkdb')

var Cursor = require('rethinkdb/cursor').Cursor
, toArray = Cursor.prototype.toArray
var next = Cursor.prototype.next
Cursor.prototype.next = function() {
return next.bind(this)
}
var each = Cursor.prototype.each
Cursor.prototype.each = function(cb) {
this.next = next
return each.bind(this, cb)
}
var toArray = Cursor.prototype.toArray
Cursor.prototype.toArray = function() {
this.each = each
this.next = next
return toArray.bind(this)

@@ -33,0 +47,0 @@ }

2

package.json
{
"name": "co-rethinkdb",
"version": "0.1.0",
"version": "0.1.1",
"author": "Markus Ast <npm.m@rkusa.st>",

@@ -5,0 +5,0 @@ "description": "Generator based querying goodness for RethinkDB",

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