All files / src/packages/event-sdk/shared shared.utils.ts

25% Statements 1/4
100% Branches 0/0
0% Functions 0/1
25% Lines 1/4

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 81x              
export function parseStringToJson<T = { [key: string]: any }>(str: string): T | string {
  try {
    return JSON.parse(str);
  } catch (_) {
    return str;
  }
}