Skip to content

Commit

Permalink
lib: fix the name of the fetch global function
Browse files Browse the repository at this point in the history
  • Loading branch information
dygabo committed May 31, 2024
1 parent 54035ac commit b02e556
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/internal/bootstrap/web/exposed-window-or-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ ObjectDefineProperty(globalThis, 'fetch', {
configurable: true,
enumerable: true,
writable: true,
value: function value(input, init = undefined) {
value: function fetch(input, init = undefined) { // eslint-disable-line func-name-matching
if (!fetchImpl) { // Implement lazy loading of undici module for fetch function
const undiciModule = require('internal/deps/undici/undici');
fetchImpl = undiciModule.fetch;
Expand Down
5 changes: 5 additions & 0 deletions test/parallel/test-global.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ for (const moduleName of builtinModules) {
'navigator',
];
assert.deepStrictEqual(new Set(Object.keys(global)), new Set(expected));
expected.forEach((value) => {
if (typeof global[value] === 'function') {
assert.strictEqual(global[value].name, value);
}
});
}

common.allowGlobals('bar', 'foo');
Expand Down

0 comments on commit b02e556

Please sign in to comment.