From c9b7596f2dbbb53c0e65114187f6b298aaae8006 Mon Sep 17 00:00:00 2001 From: Khafra Date: Sun, 25 Feb 2024 15:08:09 -0500 Subject: [PATCH] fixup --- lib/web/fetch/webidl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/web/fetch/webidl.js b/lib/web/fetch/webidl.js index e5bb5b84752..238ee88e07d 100644 --- a/lib/web/fetch/webidl.js +++ b/lib/web/fetch/webidl.js @@ -339,7 +339,7 @@ webidl.interfaceConverter = function (i) { if (opts.strict !== false && !(V instanceof i)) { throw webidl.errors.exception({ header: i.name, - message: `Expected ${JSON.stringify(V)} to be an instance of ${i.name}.` + message: `Expected ${webidl.util.Stringify(V)} to be an instance of ${i.name}.` }) }