Socket
Socket
Sign inDemoInstall

viewmodel

Package Overview
Dependencies
Maintainers
2
Versions
109
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

viewmodel - npm Package Compare versions

Comparing version 1.2.1 to 1.2.2

2

lib/databases/azuretable.js

@@ -219,3 +219,3 @@ 'use strict';

// test if we need to load more
return entities.length < pageSize ? continuationToken !== null : false;
return (entities.length < pageSize || pageSize == -1) ? continuationToken !== null : false;
}, function (err) {

@@ -222,0 +222,0 @@

{
"author": "adrai",
"name": "viewmodel",
"version": "1.2.1",
"version": "1.2.2",
"private": false,

@@ -6,0 +6,0 @@ "main": "index.js",

@@ -0,1 +1,4 @@

## v1.2.2
- azure-table: fix issue in getEvents [#7](https://github.com/adrai/node-viewmodel/pull/7) thanks to [rvin100](https://github.com/rvin100)
## v1.2.1

@@ -2,0 +5,0 @@ - fix paging issue in azure-table [#6](https://github.com/adrai/node-viewmodel/pull/6) thanks to [rvin100](https://github.com/rvin100)

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