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

ng2-pipes

Package Overview
Dependencies
Maintainers
1
Versions
88
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ng2-pipes - npm Package Compare versions

Comparing version 0.3.8 to 0.3.9

2

bin/app/pipes.module.js

@@ -21,4 +21,2 @@ "use strict";

core_1.NgModule({
declarations: string_1.STRING_PIPES.concat(array_1.ARRAY_PIPES, math_1.MATH_PIPES, boolean_1.BOOLEAN_PIPES),
imports: [],
exports: string_1.STRING_PIPES.concat(array_1.ARRAY_PIPES, math_1.MATH_PIPES, boolean_1.BOOLEAN_PIPES)

@@ -25,0 +23,0 @@ }),

2

package.json
{
"name": "ng2-pipes",
"version": "0.3.8",
"version": "0.3.9",
"author": "Dan Revah",

@@ -5,0 +5,0 @@ "description": "Useful angular2 pipes",

@@ -14,3 +14,3 @@ # Angular2 Pipes

- [shorten](#shorten)
- [stripTags](#stripTags)
- [stripTags](#striptags)
- [ucfirst](#ucfirst)

@@ -46,18 +46,18 @@ - [ucwords](#ucwords)

- [Boolean](#Boolean)
- [isNull](#isNull)
- [isDefined](#isDefined)
- [isUndefined](#isUndefined)
- [isString](#isString)
- [isFunction](#isFunction)
- [isNumber](#isNumber)
- [isArray](#isArray)
- [isObject](#isObject)
- [isGreaterThan](#isGreaterThan)
- [isGreaterEqualThan](#isGreaterEqualThan)
- [isLessThan](#isLessThan)
- [isLessEqualThan](#isLessEqualThan)
- [isEqualTo](#isEqualTo)
- [isNotEqualTo](#isNotEqualTo)
- [isIdenticalTo](#isIdenticalTo)
- [isNotIdenticalTo](#isNotIdenticalTo)
- [isNull](#isnull)
- [isDefined](#isdefined)
- [isUndefined](#isundefined)
- [isString](#isstring)
- [isFunction](#isfunction)
- [isNumber](#isnumber)
- [isArray](#isarray)
- [isObject](#isobject)
- [isGreaterThan](#isgreaterthan)
- [isGreaterEqualThan](#isgreaterequalthan)
- [isLessThan](#islessthan)
- [isLessEqualThan](#islessequalthan)
- [isEqualTo](#isequalto)
- [isNotEqualTo](#isnotequalto)
- [isIdenticalTo](#isidenticalto)
- [isNotIdenticalTo](#isnotidenticalto)

@@ -131,3 +131,3 @@

<p>{{'<a href="">foo</a> <p class="foo">bar</p>' | stripTags }}</p> <!-- Output: "foo bar" -->
<p>{{'<a href="">foo</a> <p class="foo">bar</p>' | stripTags: ['p']}}</p> <!-- Output: foo <p class="foo">bar</p> -->
<p>{{'<a href="">foo</a> <p class="foo">bar</p>' | stripTags: 'p'}}</p> <!-- Output: foo <p class="foo">bar</p> -->
```

@@ -134,0 +134,0 @@

@@ -9,6 +9,4 @@ import {NgModule} from '@angular/core';

@NgModule({
declarations: [...STRING_PIPES, ...ARRAY_PIPES, ...MATH_PIPES, ...BOOLEAN_PIPES],
imports: [],
exports: [...STRING_PIPES, ...ARRAY_PIPES, ...MATH_PIPES, ...BOOLEAN_PIPES]
})
export class NgPipesModule {}

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