UNPKG

structured-headers

Version:

Implementation of Structured Field Values for HTTP (RFC9651, RFC8941)

17 lines (9 loc) 172 B
export class DisplayString { private value: string; constructor(value: string) { this.value = value; } toString(): string { return this.value; } }