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

minimonk

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

minimonk - npm Package Compare versions

Comparing version 1.1.8 to 1.1.9

1

lib/minimonk.d.ts

@@ -64,4 +64,5 @@ import { ICollection, IMonkManager } from "monk";

findByIdAndDelete(id: string | ObjectID, options?: FindOneOptions | string): Promise<TSchema | null>;
drop(): Promise<true | "ns not found">;
}
declare const _default: (uri: string) => Manager;
export default _default;

@@ -172,2 +172,5 @@ "use strict";

};
Collection.prototype.drop = function () {
return this.collection.drop();
};
return Collection;

@@ -174,0 +177,0 @@ }());

2

package.json
{
"name": "minimonk",
"version": "1.1.8",
"version": "1.1.9",
"description": "A tiny wrapper around monk",

@@ -5,0 +5,0 @@ "main": "lib/minimonk.js",

@@ -232,4 +232,8 @@ import monk, { ICollection, IMonkManager } from "monk";

}
drop() {
return this.collection.drop();
}
}
export default (uri: string) => new Manager(uri);
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