This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global.debug = ( ) -> | |
tabs = ( n ) -> ( "\t" for i in [0...n] ).join( '' ) | |
for i in [0...arguments.length] | |
arg = arguments[i] | |
type = get_type arg | |
# last arg is boolean? sleep if true | |
if ( i + 1 ) is arguments.length and type is 'Boolean' | |
if arg |