|
@@ -1,11 +1,14 @@
|
|
import { NgModule } from '@angular/core';
|
|
import { NgModule } from '@angular/core';
|
|
import { FriendlyNumberPipe } from './friendly-number/friendly-number';
|
|
import { FriendlyNumberPipe } from './friendly-number/friendly-number';
|
|
import { DiffForHumansPipe } from './diff-for-humans/diff-for-humans';
|
|
import { DiffForHumansPipe } from './diff-for-humans/diff-for-humans';
|
|
|
|
+import { ReplaceUrlsPipe } from './replace-urls/replace-urls';
|
|
@NgModule({
|
|
@NgModule({
|
|
declarations: [FriendlyNumberPipe,
|
|
declarations: [FriendlyNumberPipe,
|
|
- DiffForHumansPipe],
|
|
|
|
|
|
+ DiffForHumansPipe,
|
|
|
|
+ ReplaceUrlsPipe],
|
|
imports: [],
|
|
imports: [],
|
|
exports: [FriendlyNumberPipe,
|
|
exports: [FriendlyNumberPipe,
|
|
- DiffForHumansPipe]
|
|
|
|
|
|
+ DiffForHumansPipe,
|
|
|
|
+ ReplaceUrlsPipe]
|
|
})
|
|
})
|
|
export class PipesModule {}
|
|
export class PipesModule {}
|