mirror of
https://github.com/denoland/deno.git
synced 2024-11-30 16:40:57 -05:00
fix lint errors
This commit is contained in:
parent
be9946f331
commit
eda4335d0e
1 changed files with 1 additions and 2 deletions
|
@ -36,7 +36,6 @@ import {
|
||||||
} from "ext:deno_node/internal_binding/async_wrap.ts";
|
} from "ext:deno_node/internal_binding/async_wrap.ts";
|
||||||
import { ares_strerror } from "ext:deno_node/internal_binding/ares.ts";
|
import { ares_strerror } from "ext:deno_node/internal_binding/ares.ts";
|
||||||
import { notImplemented } from "ext:deno_node/_utils.ts";
|
import { notImplemented } from "ext:deno_node/_utils.ts";
|
||||||
import { isWindows } from "ext:deno_node/_util/os.ts";
|
|
||||||
|
|
||||||
interface LookupAddress {
|
interface LookupAddress {
|
||||||
address: string;
|
address: string;
|
||||||
|
@ -68,7 +67,7 @@ export function getaddrinfo(
|
||||||
_hints: number,
|
_hints: number,
|
||||||
verbatim: boolean,
|
verbatim: boolean,
|
||||||
): number {
|
): number {
|
||||||
let addresses: string[] = [];
|
const addresses: string[] = [];
|
||||||
|
|
||||||
// TODO(cmorten): use hints
|
// TODO(cmorten): use hints
|
||||||
// REF: https://nodejs.org/api/dns.html#dns_supported_getaddrinfo_flags
|
// REF: https://nodejs.org/api/dns.html#dns_supported_getaddrinfo_flags
|
||||||
|
|
Loading…
Reference in a new issue