summaryrefslogtreecommitdiff
path: root/deps/undici/src/lib/fetch/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/undici/src/lib/fetch/index.js')
-rw-r--r--deps/undici/src/lib/fetch/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/undici/src/lib/fetch/index.js b/deps/undici/src/lib/fetch/index.js
index f3016c60dd..5199873242 100644
--- a/deps/undici/src/lib/fetch/index.js
+++ b/deps/undici/src/lib/fetch/index.js
@@ -318,7 +318,7 @@ function finalizeAndReportTiming (response, initiatorType = 'other') {
// https://w3c.github.io/resource-timing/#dfn-mark-resource-timing
function markResourceTiming (timingInfo, originalURL, initiatorType, globalThis, cacheState) {
- if (nodeMajor >= 18 && nodeMinor >= 2) {
+ if (nodeMajor > 18 || (nodeMajor === 18 && nodeMinor >= 2)) {
performance.markResourceTiming(timingInfo, originalURL, initiatorType, globalThis, cacheState)
}
}