Created
February 6, 2015 04:55
-
-
Save KamilLelonek/beeebdb7149b7866681b to your computer and use it in GitHub Desktop.
CoffeeScript params constructor
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
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