Comparing version 0.3.8 to 0.3.9
@@ -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 @@ }), |
{ | ||
"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
213825
3509