• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

ota-meshi / eslint-plugin-json-schema-validator / 14773577666

01 May 2025 10:00AM UTC coverage: 87.338%. Remained the same
14773577666

Pull #384

github

web-flow
Merge df5333731 into 327e06fbd
Pull Request #384: chore(deps): update dependency eslint-plugin-node-dependencies to v1

372 of 455 branches covered (81.76%)

Branch coverage included in aggregate %.

911 of 1014 relevant lines covered (89.84%)

176.76 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

71.43
/src/utils/http-client/http.ts
1
import type { RequestOptions } from "https";
6✔
2

3
/**
4
 * GET Method
5
 */
6
export function get(
7
  url: string,
8
  options?: RequestOptions,
9
  httpModulePath?: string,
10
): Promise<string> {
11
  const client = httpModulePath
3!
12
    ? // eslint-disable-next-line @typescript-eslint/no-require-imports -- ignore
13
      require(httpModulePath)
14
    : // eslint-disable-next-line @typescript-eslint/no-require-imports -- ignore
15
      require("./get-modules/http");
16
  return client.default ? client.default(url, options) : client(url, options);
3!
17
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc