From 67b892ef9efb1ca10f69302e634d7475a08cab06 Mon Sep 17 00:00:00 2001 From: Robin Ury <1146921+binury@users.noreply.github.com> Date: Thu, 18 May 2023 15:03:27 -0500 Subject: [PATCH] url: clean vertical alignment of docs PR-URL: https://github.com/nodejs/node/pull/48037 Reviewed-By: Yagiz Nizipli Reviewed-By: Deokjin Kim Reviewed-By: Filip Skokan Reviewed-By: Luigi Pinca --- lib/url.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/url.js b/lib/url.js index f54f19a73d6ab5..96a34babebb029 100644 --- a/lib/url.js +++ b/lib/url.js @@ -653,7 +653,7 @@ const noEscapeAuth = new Int8Array([ 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 0x40 - 0x4F 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, // 0x50 - 0x5F 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 0x60 - 0x6F - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, // 0x70 - 0x7F + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, // 0x70 - 0x7F ]); Url.prototype.format = function format() {