Skip to content

Commit 2b388e3

Browse files
committed
[reader.js][s]: add blob url
1 parent 34008d6 commit 2b388e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

danfojs-node/dist/io/reader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const read_csv = async (source, configs = {}) => {
2525
end
2626
} = configs;
2727

28-
if (!(source.startsWith("file://") || source.startsWith("http"))) {
28+
if (!(source.startsWith("file://") || source.startsWith("http") || source.startsWith("blob"))) {
2929
source = source.startsWith("/") ? `file://${source}` : `file://${process.cwd()}/${source}`;
3030
}
3131

0 commit comments

Comments
 (0)