Skip to content

Instantly share code, notes, and snippets.

@warseph
Created March 20, 2014 17:44
Show Gist options
  • Save warseph/9669634 to your computer and use it in GitHub Desktop.
Save warseph/9669634 to your computer and use it in GitHub Desktop.
Number::second = Number::seconds = -> this * 1000
Number::minute = Number::minutes = -> this.seconds() * 60
Number::hour = Number::hours = -> this.minutes() * 60
Number::day = Number::days = -> this.hour() * 24
# example
setTimeout (-> console.log "You've waited a LONG time"), 1.hour() + 5.minutes() + 10.seconds() # Wait 01:05:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment