Socket
Socket
Sign inDemoInstall

angular-elastic-builder

Package Overview
Dependencies
0
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.4 to 1.0.5

dist/angular-elastic-builder-1.0.5.js

2

package.json
{
"name": "angular-elastic-builder",
"version": "1.0.4",
"version": "1.0.5",
"description": "Angular Module for building an Elasticsearch Query",

@@ -5,0 +5,0 @@ "author": "Dan Crews <crewsd@gmail.com>",

@@ -116,6 +116,6 @@ /**

if (! group.subType) return;
if (group.value === undefined) return;
switch (group.subType) {
case 'equals':
case 'boolean':
if (group.value === undefined) return;
obj.term = {};

@@ -125,2 +125,3 @@ obj.term[fieldName] = group.value;

case 'notEquals':
if (group.value === undefined) return;
obj.not = { filter: { term: {}}};

@@ -127,0 +128,0 @@ obj.not.filter.term[fieldName] = group.value;

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc