in src/common/helper.js [107:116]
export function decompressStr(str) {
if (!str || !(str = str.trim())) {
return;
}
return decompressFromBase64(
str
.replace(/\-/g, '+') // Convert '-' to '+'
.replace(/_/g, '/') // Convert '_' to '/'
);
}