refactor(bench/http): Use optional chaining instead of || fallthrough (#17317)

This commit is contained in:
Max Coplan 2023-01-13 18:51:57 -05:00 committed by GitHub
parent 6557642fc8
commit b23b4e231c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
const addr = Deno.args[0] || "127.0.0.1:4500";
const addr = Deno.args[0] ?? "127.0.0.1:4500";
const [hostname, port] = addr.split(":");
const { serve } = Deno;