Skip to main content

hasHeader

method OutgoingMessage.prototype.hasHeader
Jump to headingOutgoingMessage.prototype.hasHeader(name: string): boolean

Returns true if the header identified by name is currently set in the outgoing headers. The header name is case-insensitive.

const hasContentType = outgoingMessage.hasHeader('content-type');

Parameters Jump to heading

Jump to headingname: string

Return Type Jump to heading

boolean
Back to top