Skip to content

Commit d3f3bf7

Browse files
committed
Ading in tiktok
1 parent 9072944 commit d3f3bf7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

index.html

+3-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@
3939
csv = parseTwitter(header, result);
4040
} else if (_type == "instagram.com") {
4141
csv = parseInstagram(header, result);
42-
} else {
42+
} else if (_type == "tiktok.com") {
43+
csv = parseTiktok(header, result);
44+
}else {
4345
csv = parseAll(header, result);
4446
}
4547

@@ -53,7 +55,6 @@
5355
function downloadCSV(filename, data) {
5456

5557
let downloadLink;
56-
console.log(data);
5758

5859
if (window.Blob == undefined || window.URL == undefined || window.URL.createObjectURL == undefined) {
5960
alert("Your browser doesn't support Blobs");

0 commit comments

Comments
 (0)