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

dtable-utils

Package Overview
Dependencies
Maintainers
1
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dtable-utils - npm Package Compare versions

Comparing version 4.4.0 to 4.4.1

2

es/archive/sql-generator/filter-condition.js

@@ -655,3 +655,3 @@ import _toConsumableArray from '@babel/runtime/helpers/toConsumableArray';

filters = view.filters;
if (!filters || filters.length === 0) {
if (!Array.isArray(filters) || filters.length === 0) {
return '';

@@ -658,0 +658,0 @@ }

@@ -300,2 +300,5 @@ import _defineProperty from '@babel/runtime/helpers/defineProperty';

var deleteInvalidFilter = function deleteInvalidFilter(filters, columns) {
if (!Array.isArray(filters) || filters.length === 0) {
return [];
}
var cleanFilters = [];

@@ -302,0 +305,0 @@ filters.forEach(function (filter) {

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

filters = view.filters;
if (!filters || filters.length === 0) {
if (!Array.isArray(filters) || filters.length === 0) {
return '';

@@ -668,0 +668,0 @@ }

@@ -308,2 +308,5 @@ 'use strict';

var deleteInvalidFilter = function deleteInvalidFilter(filters, columns) {
if (!Array.isArray(filters) || filters.length === 0) {
return [];
}
var cleanFilters = [];

@@ -310,0 +313,0 @@ filters.forEach(function (filter$1) {

{
"name": "dtable-utils",
"version": "4.4.0",
"version": "4.4.1",
"description": "dtable common utils",

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

Sorry, the diff of this file is too big to display

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