Skip to content

Instantly share code, notes, and snippets.

@KamilLelonek
Created February 6, 2015 04:55
Show Gist options
  • Save KamilLelonek/beeebdb7149b7866681b to your computer and use it in GitHub Desktop.
Save KamilLelonek/beeebdb7149b7866681b to your computer and use it in GitHub Desktop.
CoffeeScript params constructor
class TodoTxtBuilder
constructor: (defaultParameters = {}) ->
@date = defaultParameters.date or new Date
@title = defaultParameters.title or ''
@projects = defaultParameters.projects or [ ]
@priority = defaultParameters.priority or undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment