From 193882c4e78f33476669488eefb44e20e5c3ba72 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Wed, 2 Oct 2019 19:04:27 +0100 Subject: [PATCH] Remove console.log --- src/util.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/util.js b/src/util.js index 8c47c1a..c9b0747 100644 --- a/src/util.js +++ b/src/util.js @@ -67,7 +67,6 @@ export const distanceBetweenCoordinates = (c1, c2) => { */ export const download = (text, filename, mimeType = "text/plain") => { const dataUrl = `data:${mimeType},${encodeURIComponent(text)}`; - console.log(dataUrl); const element = document.createElement("a"); element.href = dataUrl; element.download = filename;