@brochington/automata
v0.0.5
Published
A powerful async Finite State Machine
Downloads
5
Readme
Automata
A powerful async finite state machine.
const fsm = new Automata({
initial: 'a',
states: {
a: ({ next }) => next('b'),
b: ({ next }) => next('c'),
c: { final: true },
},
});