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

wopjs / async-seq / 15457986345

05 Jun 2025 03:49AM UTC coverage: 93.396%. Remained the same
15457986345

push

github

web-flow
chore(deps-dev): bump the dev-dependencies group with 11 updates (#19)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

27 of 28 branches covered (96.43%)

Branch coverage included in aggregate %.

72 of 78 relevant lines covered (92.31%)

14.99 hits per line

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

100.0
/src/utils.ts
1
export const tryCall = async <T>(fn: () => Promise<T> | T): Promise<T | undefined> => {
1✔
2
  try {
72✔
3
    return await fn();
72✔
4
  } catch (e) {
72✔
5
    console.error(e);
1✔
6
  }
1✔
7
};
72✔
8

9
interface AbortableDisposable {
10
  (): any;
11
  abortable: (onDispose?: () => void) => void;
12
  dispose: (this: void) => any;
13
}
14

15
/** @see{@wopjs/disposable} */
16
export const isAbortable = (disposable: any): disposable is AbortableDisposable => disposable && disposable.abortable;
1✔
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