summaryrefslogtreecommitdiff
path: root/ext/url/00_url.js
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2021-10-12 09:58:04 -0400
committerGitHub <noreply@github.com>2021-10-12 09:58:04 -0400
commit9b1f0c8ba3c8ca7a7207519889b6509bfc10370e (patch)
tree8660a11544f221e1a295c5e98c5907532523f351 /ext/url/00_url.js
parentb1e7452cd310ead7e6379f694d660e935641e596 (diff)
chore: upgrade crates based on deno ast 0.3 (#12403)
Diffstat (limited to 'ext/url/00_url.js')
-rw-r--r--ext/url/00_url.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/url/00_url.js b/ext/url/00_url.js
index b1b3818a3..b483d8bd5 100644
--- a/ext/url/00_url.js
+++ b/ext/url/00_url.js
@@ -105,8 +105,9 @@
this[_list] = ArrayPrototypeMap(init, (pair, i) => {
if (pair.length !== 2) {
throw new TypeError(
- `${prefix}: Item ${i +
- 0} in the parameter list does have length 2 exactly.`,
+ `${prefix}: Item ${
+ i + 0
+ } in the parameter list does have length 2 exactly.`,
);
}
return [pair[0], pair[1]];