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