ServerOptions.uniqueHeaders - Node documentation
property ServerOptions.uniqueHeaders

Usage in Deno

import { type ServerOptions } from "node:http";

A list of response headers that should be sent only once. If the header's value is an array, the items will be joined using ; .

Type

Array<string | string[]> | undefined