parseResponse method ✓ 100.0%

Last updated: 2026-03-01T23:25:47.069Z

Metrics

LOC: 4 Complexity: 2 Params: 1 Coverage: 100.0% (2/2 lines, 7x executed)

Signature

parseResponse(raw: string): : string | null

Source Code

  parseResponse(raw: string): string | null {
    const value = raw.trim();
    return value.length > 0 ? value : null;
  },

No outgoing dependencies.

No incoming dependencies.