JSFiddle - React, Tailwind, and code Playground

JavaScript

// Gzipped file.
d3.text("https://dl.dropboxusercontent.com/s/335n5iyhqlx1m3k/exmaple.txt.gz", function(error, text) {
    console.log("compressed: ",text)
}).header("Content-Encoding", "gzip");

// Uncompressed file.
d3.text("https://dl.dropboxusercontent.com/s/32at6x0da2ndkay/exmaple.txt", function(error, text) {
    console.log("uncompressed: ",text)
});