ngx-translate-extract/src/utils/utils.ts

4 lines
78 B
TypeScript
Raw Normal View History

export function _(key: string | string[]): string | string[] {
return key;
}