Skip to content
This repository was archived by the owner on Nov 12, 2025. It is now read-only.

v0.4.0

Choose a tag to compare

@nickuraltsev nickuraltsev released this 22 May 00:21
· 113 commits to master since this release

Added support for Promise-based triggers.

StateMachine
  .configure()
    .initialState('state1')
      .do(asyncOperation) 
        .onSuccess().transitionTo('state2')
        .onFailure().transitionTo('state3')