@loaders.gl/csv 4.1.0-alpha.5 → 4.1.0-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/csv-loader.js +1 -1
- package/dist/dist.dev.js +1 -1
- package/package.json +4 -4
package/dist/csv-loader.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AsyncQueue, TableBatchBuilder, convertToArrayRow, convertToObjectRow } from '@loaders.gl/schema';
|
|
2
2
|
import Papa from "./papaparse/papaparse.js";
|
|
3
3
|
import AsyncIteratorStreamer from "./papaparse/async-iterator-streamer.js";
|
|
4
|
-
const VERSION = typeof "4.1.0-alpha.
|
|
4
|
+
const VERSION = typeof "4.1.0-alpha.6" !== 'undefined' ? "4.1.0-alpha.6" : 'latest';
|
|
5
5
|
const DEFAULT_CSV_SHAPE = 'object-row-table';
|
|
6
6
|
export const CSVLoader = {
|
|
7
7
|
id: 'csv',
|
package/dist/dist.dev.js
CHANGED
|
@@ -1397,7 +1397,7 @@ var __exports__ = (() => {
|
|
|
1397
1397
|
AsyncIteratorStreamer.prototype.constructor = AsyncIteratorStreamer;
|
|
1398
1398
|
|
|
1399
1399
|
// src/csv-loader.ts
|
|
1400
|
-
var VERSION = true ? "4.1.0-alpha.
|
|
1400
|
+
var VERSION = true ? "4.1.0-alpha.6" : "latest";
|
|
1401
1401
|
var DEFAULT_CSV_SHAPE = "object-row-table";
|
|
1402
1402
|
var CSVLoader = {
|
|
1403
1403
|
id: "csv",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loaders.gl/csv",
|
|
3
|
-
"version": "4.1.0-alpha.
|
|
3
|
+
"version": "4.1.0-alpha.6",
|
|
4
4
|
"description": "Framework-independent loader for CSV and DSV table formats",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -43,11 +43,11 @@
|
|
|
43
43
|
"build-bundle": "ocular-bundle ./src/index.ts"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@loaders.gl/loader-utils": "4.1.0-alpha.
|
|
47
|
-
"@loaders.gl/schema": "4.1.0-alpha.
|
|
46
|
+
"@loaders.gl/loader-utils": "4.1.0-alpha.6",
|
|
47
|
+
"@loaders.gl/schema": "4.1.0-alpha.6"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"d3-dsv": "^1.2.0"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "fd58d91e05ebfd89ab8998a87157bf07c43997a5"
|
|
53
53
|
}
|