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

javascript-obfuscator / javascript-obfuscator / 19989547804

06 Dec 2025 02:03PM UTC coverage: 95.907% (-1.4%) from 97.319%
19989547804

Pull #1343

github

web-flow
Merge 28296ecce into 3bb9b1872
Pull Request #1343: Add Async PRO API

1770 of 1941 branches covered (91.19%)

Branch coverage included in aggregate %.

10 of 73 new or added lines in 4 files covered. (13.7%)

5681 of 5828 relevant lines covered (97.48%)

33532868.14 hits per line

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

20.0
/src/pro-api/ApiError.ts
1
/**
2
 * Error thrown by Pro API
3
 */
4
export class ApiError extends Error {
6✔
5
    public readonly statusCode: number;
6
    public readonly response?: string;
7

8
    public constructor(message: string, statusCode: number, response?: string) {
NEW
9
        super(message);
×
NEW
10
        this.name = 'ApiError';
×
NEW
11
        this.statusCode = statusCode;
×
NEW
12
        this.response = response;
×
13
    }
14
}
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