diff --git a/package.json b/package.json index 33994cd..6458037 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "angular-pipes", - "version": "6.1.0", + "version": "6.1.1", "description": "Angular pipes library", "main": "src/index.js", "jsnext:main": "esm/index.js", diff --git a/src/array/index.ts b/src/array/index.ts index 4ebcb43..e53d394 100644 --- a/src/array/index.ts +++ b/src/array/index.ts @@ -24,6 +24,7 @@ import { DropPipe } from './drop.pipe'; import { DeepPipe } from './deep.pipe'; import { ChunkPipe } from './chunk.pipe'; import { FlattenPipe } from './flatten.pipe'; +import { IntersectionPipe } from './intersection.pipe'; export * from './empty.pipe'; export * from './head.pipe'; @@ -49,6 +50,8 @@ export * from './drop.pipe'; export * from './deep.pipe'; export * from './chunk.pipe'; export * from './flatten.pipe'; +export * from './intersection.pipe'; + @NgModule({ @@ -76,7 +79,8 @@ export * from './flatten.pipe'; DeepPipe, ChunkPipe, FlattenPipe, - FirstOrDefaultPipe + FirstOrDefaultPipe, + IntersectionPipe ], exports: [ EmptyPipe, @@ -102,7 +106,8 @@ export * from './flatten.pipe'; DeepPipe, ChunkPipe, FlattenPipe, - FirstOrDefaultPipe + FirstOrDefaultPipe, + IntersectionPipe ] }) export class NgArrayPipesModule {}