Socket
Socket
Sign inDemoInstall

kinvey-html5-sdk

Package Overview
Dependencies
Maintainers
2
Versions
138
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kinvey-html5-sdk - npm Package Compare versions

Comparing version 3.13.0-next.4 to 3.13.0-next.5

2

package.json
{
"name": "kinvey-html5-sdk",
"description": "Kinvey JavaScript SDK for HTML5 applications.",
"version": "3.13.0-next.4",
"version": "3.13.0-next.5",
"homepage": "https://www.progress.com/kinvey",

@@ -6,0 +6,0 @@ "license": "Apache-2.0",

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

_context2.next = 2;
return execute(dbName, tableName, [['SELECT COUNT(*) AS value FROM #{table}']]);
return execute(dbName, tableName, [['SELECT COUNT(DISTINCT key) AS value FROM #{table}']]);

@@ -170,0 +170,0 @@ case 2:

@@ -814,4 +814,4 @@ "use strict";

if (this.skip > 0) {
if (this.limit < Infinity) {
if ((0, _isNumber.default)(this.skip) && this.skip > 0) {
if ((0, _isNumber.default)(this.limit) && this.limit < Infinity) {
processedDocs = processedDocs.slice(this.skip, this.skip + this.limit);

@@ -821,3 +821,3 @@ } else {

}
} else if (this.limit < Infinity) {
} else if ((0, _isNumber.default)(this.limit) && this.limit < Infinity) {
processedDocs = processedDocs.slice(0, this.limit);

@@ -824,0 +824,0 @@ }

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