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

prisma-mock

Package Overview
Dependencies
Maintainers
1
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

prisma-mock - npm Package Compare versions

Comparing version 0.8.3 to 0.9.0

4

lib/index.js

@@ -822,2 +822,6 @@ "use strict";

}
if (args?.cursor !== undefined) {
const cursorVal = res.findIndex((r) => Object.keys(args?.cursor).every((key) => r[key] === args?.cursor[key]));
res = res.slice(cursorVal);
}
if (args?.skip !== undefined || args?.take !== undefined) {

@@ -824,0 +828,0 @@ const start = args?.skip !== undefined ? args?.skip : 0;

2

package.json
{
"name": "prisma-mock",
"version": "0.8.3",
"version": "0.9.0",
"description": "Mock prisma for unit testing database",

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