mirror of https://github.com/abpframework/abp.git
committed by
GitHub
4 changed files with 16 additions and 1 deletions
@ -0,0 +1 @@ |
|||
export * from './localization.pipe'; |
|||
@ -0,0 +1,12 @@ |
|||
import { Injectable, Pipe, PipeTransform } from '@angular/core'; |
|||
|
|||
@Injectable() |
|||
@Pipe({ |
|||
name: 'abpLocalization', |
|||
standalone: true, |
|||
}) |
|||
export class LocalizationPipe implements PipeTransform { |
|||
transform(value: string): string { |
|||
return value; |
|||
} |
|||
} |
|||
@ -1,3 +1,4 @@ |
|||
export * from './lib/core-testing.module'; |
|||
export * from './lib/services'; |
|||
export * from './lib/utils'; |
|||
export * from './lib/pipes'; |
|||
|
|||
Loading…
Reference in new issue