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

visgl / loaders.gl / 20352515932

18 Dec 2025 09:56PM UTC coverage: 35.115% (-28.4%) from 63.485%
20352515932

push

github

web-flow
feat(loader-utils): Export is-type helpers (#3258)

1188 of 1998 branches covered (59.46%)

Branch coverage included in aggregate %.

147 of 211 new or added lines in 13 files covered. (69.67%)

30011 existing lines in 424 files now uncovered.

37457 of 108056 relevant lines covered (34.66%)

0.79 hits per line

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

55.56
/modules/gltf/src/lib/utils/assert.ts
1
// Replacement for the external assert method to reduce bundle size
1✔
2
// Note: We don't use the second "message" argument in calling code,
1✔
3
// so no need to support it here
1✔
4
export function assert(condition: unknown, message?: string): void {
1✔
UNCOV
5
  if (!condition) {
×
6
    throw new Error(message || 'assert failed: gltf');
×
7
  }
×
UNCOV
8
}
×
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