We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34008d6 commit 2b388e3Copy full SHA for 2b388e3
1 file changed
danfojs-node/dist/io/reader.js
@@ -25,7 +25,7 @@ const read_csv = async (source, configs = {}) => {
25
end
26
} = configs;
27
28
- if (!(source.startsWith("file://") || source.startsWith("http"))) {
+ if (!(source.startsWith("file://") || source.startsWith("http") || source.startsWith("blob"))) {
29
source = source.startsWith("/") ? `file://${source}` : `file://${process.cwd()}/${source}`;
30
}
31
0 commit comments