Socket
Socket
Sign inDemoInstall

ts-redis-orm

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ts-redis-orm - npm Package Compare versions

Comparing version 0.1.5 to 0.1.6

2

package.json
{
"name": "ts-redis-orm",
"version": "0.1.5",
"version": "0.1.6",
"description": "A full functional Redis Orm library written in Typescript.",

@@ -5,0 +5,0 @@ "main": "build/index.js",

@@ -342,3 +342,7 @@ import Debug from "debug";

if (whereIndexKeys.length === 0) {
this.where("createdAt", "<=", "+inf");
if (this._sortBy && serviceInstance.isIndexKey(this._entityType, this._sortBy.column)) {
this.where(this._sortBy.column as any, "<=", "+inf");
} else {
this.where("createdAt", "<=", "+inf");
}
whereIndexKeys = Object.keys(this._whereIndexes);

@@ -345,0 +349,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