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

uniqorm

Package Overview
Dependencies
Maintainers
1
Versions
123
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

uniqorm - npm Package Compare versions

Comparing version 2.20.2 to 2.20.3

2

lib/DataField.js

@@ -156,3 +156,3 @@ /* UNIQORM

try {
this._validate(v);
this._validate(this._parse(v));
if (this.validator)

@@ -159,0 +159,0 @@ this.validator(v, this, values, context);

@@ -95,3 +95,3 @@ /* UNIQORM

return;
if (this.minValue) {
if (this.minValue != null) {
const minValue = typeof this.minValue === 'function' ?

@@ -111,3 +111,3 @@ this._parse(this.minValue()) : this.minValue;

if (this.maxValue) {
if (this.maxValue != null) {
const maxValue = typeof this.maxValue === 'function' ?

@@ -114,0 +114,0 @@ this._parse(this.maxValue()) : this.maxValue;

@@ -138,3 +138,3 @@ /* UNIQORM

return;
if (this.minValue) {
if (this.minValue != null) {
const minValue = typeof this.minValue === 'function' ?

@@ -154,3 +154,3 @@ this._parse(this.minValue()) : this.minValue;

if (this.maxValue) {
if (this.maxValue != null) {
const maxValue = typeof this.maxValue === 'function' ?

@@ -157,0 +157,0 @@ this._parse(this.maxValue()) : this.maxValue;

{
"name": "uniqorm",
"description": "Multi dialect and multi schema ORM framework for enterprise level NodeJS applications",
"version": "2.20.2",
"version": "2.20.3",
"author": "Panates Ltd.",

@@ -6,0 +6,0 @@ "contributors": [

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