Scramble & Decode
you pressed the button
const jumbler = scramble(HTMLElement)
jumbler.worker.original // button 1
jumbler.run() // button 2
jumbler.finished() // button 3
Worker Entity
this is the worker function
const jumbler = scramble(HTMLElement)
const runner = jumbler.worker
runner.original // button 1
runner.start() // button 2
runner.stop() // button 3
Successive Scramble
first to decode
next to decode
last to decode
const listJumbler = scramble.successive(NodeList<HTMLElement>)
listJumbler.run()