summaryrefslogtreecommitdiff
path: root/packages/integrations/node/src/createOutgoingHttpHeaders.ts
diff options
context:
space:
mode:
authorGravatar Erika <3019731+Princesseuh@users.noreply.github.com> 2023-07-18 02:17:59 +0200
committerGravatar GitHub <noreply@github.com> 2023-07-18 02:17:59 +0200
commitf14e48098a3bc74d85715b5610dbba588d4943cd (patch)
tree11284e8456c5f7f52fd37d1ad6f488133e883db9 /packages/integrations/node/src/createOutgoingHttpHeaders.ts
parentcc0f81c040e912cff0c09e89327ef1655f96b67d (diff)
downloadastro-f14e48098a3bc74d85715b5610dbba588d4943cd.tar.gz
astro-f14e48098a3bc74d85715b5610dbba588d4943cd.tar.zst
astro-f14e48098a3bc74d85715b5610dbba588d4943cd.zip
nit: use `node:` prefix everywhere (#7692)
* nit: use `node:` prefix everywhere * nit: fs/promises too * test: workaround issue in node builtin detection
Diffstat (limited to 'packages/integrations/node/src/createOutgoingHttpHeaders.ts')
-rw-r--r--packages/integrations/node/src/createOutgoingHttpHeaders.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/node/src/createOutgoingHttpHeaders.ts b/packages/integrations/node/src/createOutgoingHttpHeaders.ts
index 80269489e..e6c0c0ba4 100644
--- a/packages/integrations/node/src/createOutgoingHttpHeaders.ts
+++ b/packages/integrations/node/src/createOutgoingHttpHeaders.ts
@@ -1,4 +1,4 @@
-import type { OutgoingHttpHeaders } from 'http';
+import type { OutgoingHttpHeaders } from 'node:http';
/**
* Takes in a nullable WebAPI Headers object and produces a NodeJS OutgoingHttpHeaders object suitable for usage