JSFiddle - React, Tailwind, and code Playground

by michaelsbradleyjr

HTML

<script src="https://raw.github.com/projexsys/Jolt/master/bundles/Jolt.min.js"></script>

CoffeeScript

Jolt.globalize()

myE = internalE()

window.x = counter: 0

class myOneE extends OneE
  updater: (value...) ->
    window.x.counter += 1
    if window.x.counter is 400000
      alert window.x.counter
    value
    
for i in [1..100000]
  (myOneE.factory 1, 2, 3)
  .z()
  .recur()

sendEvent myE, 4, 5, 6