projects/i-components/src/lib/pipes/pipes.module.ts
/*****************************************************************************
* Copyright (C) Mobilize.Net <info@mobilize.net> - All Rights Reserved
*
* This file is part of the Mobilize Frameworks, which is
* proprietary and confidential.
*
* NOTICE: All information contained herein is, and remains
* the property of Mobilize.Net Corporation.
* The intellectual and technical concepts contained herein are
* proprietary to Mobilize.Net Corporation and may be covered
* by U.S. Patents, and are protected by trade secret or copyright law.
* Dissemination of this information or reproduction of this material
* is strictly forbidden unless prior written permission is obtained
* from Mobilize.Net Corporation.
******************************************************************************/
import { CommonModule } from '@angular/common';
import { MemoizePipe } from './memoize.pipe';
import {
CUSTOM_ELEMENTS_SCHEMA,
NgModule,
NO_ERRORS_SCHEMA,
} from '@angular/core';
@NgModule({
imports: [CommonModule],
declarations: [MemoizePipe],
exports: [MemoizePipe],
schemas: [CUSTOM_ELEMENTS_SCHEMA, NO_ERRORS_SCHEMA],
})
export class PipesModule {}