Files
bun.sh/test/regression
Claude Bot ddafa2e514 fix(http): implement headersDistinct and trailersDistinct (#24268)
Add `headersDistinct` and `trailersDistinct` getters to IncomingMessage
to match Node.js behavior. These properties return headers/trailers
grouped by lowercased name with all values as arrays.

Example output:
{
  accept: [ 'application/json', 'text/plain' ],
  host: [ 'localhost:8000' ]
}

The implementation uses lazy evaluation with caching for performance.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-27 10:21:39 +00:00
..