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

angular-elastic-builder-oguennec

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-elastic-builder-oguennec - npm Package Compare versions

Comparing version 1.5.6 to 1.5.7

dist/angular-elastic-builder-oguennec.js

4

bower.json
{
"name": "angular-elastic-builder-oguennec",
"version": "1.5.6",
"version": "1.5.7",
"description": "Angular Module for building an Elasticsearch Query",

@@ -38,4 +38,4 @@ "homepage": "https://github.com/oguennec/angular-elastic-builder",

"express": "^4.13.4",
"moment": "^2.13.0"
"moment": "^2.10.6"
}
}

@@ -38,3 +38,3 @@ /**

gulp.task('clean', function(done) {
del('./dist', done);
del('./dist/*', done);
});

@@ -41,0 +41,0 @@

{
"name": "angular-elastic-builder-oguennec",
"version": "1.5.6",
"version": "1.5.7",
"description": "Angular Module for building an Elasticsearch Query",

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

@@ -171,3 +171,3 @@ /**

obj.term = {};
obj.term[fieldName] = group.value;
obj.term[fieldName] = group.value.toString().toLowerCase();
break;

@@ -177,3 +177,3 @@ case 'notEquals':

obj.not = { filter: { term: {}}};
obj.not.filter.term[fieldName] = group.value;
obj.not.filter.term[fieldName] = group.value.toString().toLowerCase();
break;

@@ -180,0 +180,0 @@ case 'exists':

Sorry, the diff of this file is not supported yet

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