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

PeculiarVentures / ASN1.js / 24662845397

20 Apr 2026 10:59AM UTC coverage: 78.578%. Remained the same
24662845397

push

github

microshine
ci(publish): update publish workflow to use simplified tag pattern and remove npm access flag

795 of 1230 branches covered (64.63%)

1625 of 2068 relevant lines covered (78.58%)

11450.65 hits per line

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

50.0
/src/Any.ts
1
import { EMPTY_STRING } from "./internals/constants";
12✔
2

3
export interface IAny {
4
  name: string;
5
  optional: boolean;
6
}
7

8
export type AnyParams = Partial<IAny>;
9

10
export class Any implements IAny {
12✔
11
  public name: string;
12
  public optional: boolean;
13

14
  constructor({ name = EMPTY_STRING, optional = false }: AnyParams = {}) {
×
15
    this.name = name;
×
16
    this.optional = optional;
×
17
  }
18
}
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