chore - remove unused, bad-layered util-function

This commit is contained in:
Johannes Rieken 2020-08-21 14:58:43 +02:00
parent e2efa92868
commit 25ad7485b3

View file

@ -855,10 +855,6 @@ export function stripUTF8BOM(str: string): string {
return startsWithUTF8BOM(str) ? str.substr(1) : str;
}
export function safeBtoa(str: string): string {
return btoa(encodeURIComponent(str)); // we use encodeURIComponent because btoa fails for non Latin 1 values
}
/**
* @deprecated ES6
*/