diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2021-10-12 09:58:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-12 09:58:04 -0400 |
commit | 9b1f0c8ba3c8ca7a7207519889b6509bfc10370e (patch) | |
tree | 8660a11544f221e1a295c5e98c5907532523f351 /ext/url/00_url.js | |
parent | b1e7452cd310ead7e6379f694d660e935641e596 (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.js | 5 |
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]]; |