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

visgl / loaders.gl / 25798238260

13 May 2026 12:10PM UTC coverage: 60.607% (+0.3%) from 60.27%
25798238260

push

github

web-flow
feat(json) GeoJSON -> geoarrow, schema, logging  (#3399)

13466 of 24516 branches covered (54.93%)

Branch coverage included in aggregate %.

448 of 541 new or added lines in 12 files covered. (82.81%)

1264 existing lines in 117 files now uncovered.

27516 of 43103 relevant lines covered (63.84%)

15056.99 hits per line

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

50.0
/modules/polyfills/src/buffer/btoa.node.ts
1
// btoa, atob polyfills for Node.js
2
// Note: The atob and btoa functions (not just the polyfills!) are not unicode safe
3
// But still useful for unit testing
4

5
export function atob(string) {
UNCOV
6
  return Buffer.from(string).toString('base64');
1✔
7
}
8

9
export function btoa(base64) {
10
  return Buffer.from(base64, 'base64').toString('ascii');
×
11
}
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