Function compressHybrid

  • Hybrid LZ77 compressor: uses hash table for fast match search, but falls back to full window scan for correctness. This ensures full LZ77 round-trip safety, with performance close to the hash table method for most inputs.

    Parameters

    Returns string | false