JSFiddle - React, Tailwind, and code Playground

by Ilya Karpuk

HTML

<textarea id="input"></textarea><br>
<button onclick="compress()">Compress</button><br><br>
<textarea id="output"></textarea>

JavaScript

//http://pastebin.com/fpav1U4Y

var input = document.getElementById("input");
var output = document.getElementById("output");

function compress(){
    
}