forked from danrevah/ngx-pipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
53 lines (50 loc) · 1.83 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import { NgModule } from '@angular/core';
import { UcWordsPipe } from './ucwords';
import { LeftTrimPipe } from './ltrim';
import { RepeatPipe } from './repeat';
import { RightTrimPipe } from './rtrim';
import { ScanPipe } from './scan';
import { ShortenPipe } from './shorten';
import { StripTagsPipe } from './strip-tags';
import { TrimPipe } from './trim';
import { UcFirstPipe } from './ucfirst';
import { SlugifyPipe } from './slugify';
import { CamelizePipe } from './camelize';
import { LatinisePipe } from './latinise';
import { LinesPipe } from './lines';
import { UnderscorePipe } from './underscore';
import { MatchPipe } from './match';
import { TestPipe } from './test';
import { LeftPadPipe } from './lpad';
import { RightPadPipe } from './rpad';
export const STRING_PIPES = [
LeftTrimPipe, RepeatPipe, RightTrimPipe, ScanPipe, ShortenPipe,
StripTagsPipe, TrimPipe, UcFirstPipe, UcWordsPipe, SlugifyPipe,
CamelizePipe, LatinisePipe, LinesPipe, UnderscorePipe, MatchPipe,
TestPipe, LeftPadPipe, RightPadPipe,
];
@NgModule({
declarations: STRING_PIPES,
imports: [],
exports: STRING_PIPES
})
export class NgStringPipesModule {}
export {UcWordsPipe} from './ucwords';
export {LeftTrimPipe} from './ltrim';
export {RepeatPipe} from './repeat';
export {RightTrimPipe} from './rtrim';
export {ScanPipe} from './scan';
export {ShortenPipe} from './shorten';
export {StripTagsPipe} from './strip-tags';
export {TrimPipe} from './trim';
export {UcFirstPipe} from './ucfirst';
export {SlugifyPipe} from './slugify';
export {CamelizePipe} from './camelize';
export {LatinisePipe} from './latinise';
export {LinesPipe} from './lines';
export {UnderscorePipe} from './underscore';
export {MatchPipe} from './match';
export {TestPipe} from './test';
export {LeftPadPipe} from './lpad';
export {RightPadPipe} from './rpad';
export {WrapPipe} from './wrap';