JSFiddle - React, Tailwind, and code Playground

by XTREME104

HTML

<!DOCTYPE html>
<html>
    <body onload="init()"></body>
</html>

JavaScript

function init () {
    return;
}

/*
Letter
Integer
Space
Tab
Newline
Semi-Colon
Comma
Colon
*/

const TOKENS1 = [
    new RegExp("[a-zA-Z]"),
    new RegExp("[0-9]"),
    " ",
    "\t",
    "\n",
    ";",
    ",",
    ":"
];