nycJSorg/angular-presentation

View on GitHub
libs/utils/src/lib/pipes/pipes.module.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { NgModule } from '@angular/core';
import { SafeHtml } from './safeHtml.pipe';

@NgModule({
  declarations: [SafeHtml],
  exports: [SafeHtml]
})
export class SharedPipeModule {}