A very simple class that allows stacking functions and calling them step by step or priodiacly. This class is different from Chain in few ways:
This is quite stright farward:
var stack = new FunctionStack( function(){console.log('a');}, function(){console.log('b');}, function(){console.log('c');}, function(){console.log('d');}, function(){console.log('e');} ); stack.step(); //will call log 'a' stack.play(); //will log 'b' 'c' 'd' 'e' periodicaly (defualt to 1000 miliseconds)
A note on comments here: These comments are moderated. No comments will show up until they are approved. Comments that are not productive (i.e. inflammatory, rude, etc) will not be approved.
Found a bug in this plugin? Please report it this repository's Github Issues.
blog comments powered by Disqus