New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

mongot

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mongot - npm Package Compare versions

Comparing version 1.4.5 to 1.4.6

2

package.json
{
"name": "mongot",
"version": "1.4.5",
"version": "1.4.6",
"description": "MongoT is a modern ODM library for MongoDb.",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -67,2 +67,9 @@ /// <reference types="node" />

/**
* @param hint
* @returns {Cursor<T>}
*/
hint(hint: {
[key: string]: string | number;
}): this;
/**
* @deprecated A hasNext() method in some combination with fetch causes error "cursor is exhausted".

@@ -69,0 +76,0 @@ *

@@ -118,2 +118,10 @@ "use strict";

/**
* @param hint
* @returns {Cursor<T>}
*/
hint(hint) {
this.cursor.hint(hint);
return this;
}
/**
* @deprecated A hasNext() method in some combination with fetch causes error "cursor is exhausted".

@@ -120,0 +128,0 @@ *

Sorry, the diff of this file is not supported yet

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