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

visgl / loaders.gl / 24907303489

24 Apr 2026 07:12PM UTC coverage: 59.423% (+0.09%) from 59.334%
24907303489

push

github

web-flow
feat: Dynamic import loaders (#3405)

11252 of 20783 branches covered (54.14%)

Branch coverage included in aggregate %.

1164 of 1518 new or added lines in 244 files covered. (76.68%)

41 existing lines in 18 files now uncovered.

23432 of 37585 relevant lines covered (62.34%)

16317.58 hits per line

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

0.0
/modules/csv/src/lib/csv-default-options.ts
1
// loaders.gl
2
// SPDX-License-Identifier: MIT
3
// Copyright (c) vis.gl contributors
4

5
/** Default output shape for CSV row-table parsing. */
UNCOV
6
export const DEFAULT_CSV_SHAPE = 'object-row-table' as const;
×
7

8
/** Default CSV parser options shared by row-table and Arrow-table code paths. */
UNCOV
9
export const DEFAULT_CSV_OPTIONS = {
×
10
  shape: DEFAULT_CSV_SHAPE,
11
  optimizeMemoryUsage: false,
12
  header: 'auto' as const,
13
  columnPrefix: 'column',
14
  quoteChar: '"',
15
  escapeChar: '"',
16
  dynamicTyping: true,
17
  comments: false,
18
  skipEmptyLines: true,
19
  detectGeometryColumns: false,
20
  delimitersToGuess: [',', '\t', '|', ';']
21
};
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