ng2-pipes
Version:
Useful angular2 pipes
29 lines (25 loc) • 715 B
text/typescript
import { KeysPipe } from './keys';
import { ValuesPipe } from './values';
import { PairsPipe } from './pairs';
import { PickPipe } from './pick';
import { OmitPipe } from './omit';
import { InvertPipe } from './invert';
import { InvertByPipe } from './invert-by';
import { NgModule } from '@angular/core';
const OBJECT_PIPES = [
KeysPipe, ValuesPipe, PairsPipe, PickPipe, InvertPipe, InvertByPipe,
OmitPipe
];
({
declarations: OBJECT_PIPES,
imports: [],
exports: OBJECT_PIPES
})
export class NgObjectPipesModule {}
export * from './keys';
export * from './values';
export * from './pairs';
export * from './pick';
export * from './omit';
export * from './invert';
export * from './invert-by';