New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ng2-filter-pipe

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ng2-filter-pipe - npm Package Compare versions

Comparing version 0.1.8 to 0.1.9

5

CHANGELOG.md
# Changelog
## 0.1.9
* [[#32](https://github.com/VadimDez/ng2-filter-pipe/issues/32)] - Filter fails when filter value is zero
## 0.1.8

@@ -7,3 +10,3 @@ * Removed warning in Angular 4+

## 0.1.7
* [[#28](https://github.com/VadimDez/ng2-filter-pipe/pull/28)] - Filter number by string
* [[#28](https://github.com/VadimDez/ng2-filter-pipe/issues/28)] - Filter number by string
* Removed post install script

@@ -10,0 +13,0 @@

2

dist/src/ng2-filter.pipe.js

@@ -68,3 +68,3 @@ "use strict";

return function (value) {
return !filter || filter == value;
return filter === undefined || filter == value;
};

@@ -71,0 +71,0 @@ };

{
"name": "ng2-filter-pipe",
"version": "0.1.8",
"version": "0.1.9",
"author": "Vadym Yatsyuk <vadym.yatsyuk@gmail.com>",

@@ -5,0 +5,0 @@ "license": "MIT",

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