Skip to content

Commit d33cbab

Browse files
meixgtargos
authored andcommitted
lib: remove experimental warning from FormData
fixes: #42792 PR-URL: #42807 Fixes: #42792 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Mestery <[email protected]> Reviewed-By: Beth Griggs <[email protected]> Reviewed-By: Filip Skokan <[email protected]> Reviewed-By: Akhil Marsonya <[email protected]>
1 parent f9994e2 commit d33cbab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/bootstrap/pre_execution.js

+1-1
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)