UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

9 lines (8 loc) 251 B
export function getHeader(headers, header) { for (const [headerKey, headerValue] of Object.entries(headers)) { if (headerKey.toLowerCase() === header.toLowerCase()) { return headerValue; } } return undefined; }