Skip to content

Instantly share code, notes, and snippets.

@igncp
igncp / gist:071632ed5d6fa4d7f8d0
Last active August 29, 2015 14:20
machina.js Fsm alternative
var Fsm = {
constructor: function() {
BehavioralFsm.apply( this, arguments );
this.ensureClientMeta();
},
initClient: function initClient() {
var initialState = this.initialState;
if ( !initialState ) {
throw new Error( "You must specify an initial state for this FSM" );
}