Skip to content

Commit 5ad47a0

Browse files
authored
lib: remove experimental warning from FormData
fixes: #42792 PR-URL: #42807 Fixes: #42792 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Beth Griggs <bgriggs@redhat.com> Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com>
1 parent e2ff1c3 commit 5ad47a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/bootstrap/pre_execution.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,12 +190,12 @@ function setupFetch() {
190190
return undici;
191191
}
192192

193-
emitExperimentalWarning('The Fetch API');
194193
undici = require('internal/deps/undici/undici');
195194
return undici;
196195
}
197196

198197
async function fetch(input, init = undefined) {
198+
emitExperimentalWarning('The Fetch API');
199199
return lazyUndici().fetch(input, init);
200200
}
201201

0 commit comments

Comments
 (0)