Created
February 6, 2015 05:16
-
-
Save KamilLelonek/61aff7dfdc331ee0d0d6 to your computer and use it in GitHub Desktop.
CoffeeScript builder constructor usage
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
coffee> new TodoTxtBuilder() | |
.date(new Date) | |
.title('title') | |
.projects([]) | |
{ | |
date: Fri Feb 06 2015 06:15:25 GMT+0100 (CET), | |
title: 'title', | |
projects: [] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment