Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
sholladay committed Jul 1, 2020
1 parent 2373c1b commit ed65756
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -54,7 +54,7 @@ const mergeHeaders = (source1, source2) => {
const source = new globals.Headers(source2 || {});

for (const [key, value] of source) {
if ((isHeadersInstance && (value === undefined || value === 'undefined')) {
if (isHeadersInstance && (value === undefined || value === 'undefined')) {
result.delete(key);
} else {
result.set(key, value);
Expand Down

0 comments on commit ed65756

Please sign in to comment.