diff options
Diffstat (limited to 'lib/internal/bootstrap/node.js')
| -rw-r--r-- | lib/internal/bootstrap/node.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/internal/bootstrap/node.js b/lib/internal/bootstrap/node.js index 41a833885f..e25e0405c7 100644 --- a/lib/internal/bootstrap/node.js +++ b/lib/internal/bootstrap/node.js @@ -224,6 +224,15 @@ defineLazyProperties( ['structuredClone'], ); +// https://html.spec.whatwg.org/multipage/system-state.html#the-navigator-object +ObjectDefineProperty(globalThis, 'navigator', { + __proto__: null, + enumerable: true, + configurable: true, + writable: false, + value: require('internal/navigator'), +}); + // Set the per-Environment callback that will be called // when the TrackingTraceStateObserver updates trace state. // Note that when NODE_USE_V8_PLATFORM is true, the observer is |
