Skip to content

Instantly share code, notes, and snippets.

@rystsov
Created May 5, 2016 07:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rystsov/1221d05bebf70197b6dd0b08d335a86a to your computer and use it in GitHub Desktop.
Save rystsov/1221d05bebf70197b6dd0b08d335a86a to your computer and use it in GitHub Desktop.
function FSM() {
this.state = null;
this.execute = function(action, msg) {
this.state = action(this.state, msg)
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment