Socket
Socket
Sign inDemoInstall

@karmaniverous/entity-manager

Package Overview
Dependencies
38
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.4.0 to 4.4.1

4

dist/default/lib/EntityManager/EntityManager.js

@@ -248,3 +248,3 @@ "use strict";

pageKeys,
pages = 1
pages = 'all'
} = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};

@@ -338,3 +338,3 @@ // Validate params.

page++;
} while (page < pages && !(0, _isEmpty2.default)(result.pageKeys));
} while (page < pages && result.items.length < limit && !(0, _isEmpty2.default)(result.pageKeys));
return result;

@@ -341,0 +341,0 @@ }

@@ -230,3 +230,3 @@ /**

pageKeys,
pages = 1,
pages = 'all',
} = {}) {

@@ -319,3 +319,7 @@ // Validate params.

page++;
} while (page < pages && !_.isEmpty(result.pageKeys));
} while (
page < pages &&
result.items.length < limit &&
!_.isEmpty(result.pageKeys)
);

@@ -322,0 +326,0 @@ return result;

{
"name": "@karmaniverous/entity-manager",
"version": "4.4.0",
"version": "4.4.1",
"publishConfig": {

@@ -5,0 +5,0 @@ "access": "public"

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc