refactor(localize): remove unused code (#36834)

This commit removes some code that is not actually used.
Some more text to ensure the commit message is long enough.

PR Close #36834
This commit is contained in:
Pete Bacon Darwin 2020-04-20 13:46:49 +01:00 committed by Andrew Kushnir
parent d3deaf9a99
commit 0ce96f1d78

View File

@ -19,7 +19,3 @@ export interface MessageRenderer<T> {
startIcu(): void;
endIcu(): void;
}
export function stripInterpolationMarkers(interpolation: string): string {
return interpolation.replace(/^\{\{/, '').replace(/}}$/, '');
}