coco
coco copied to clipboard
Unfancy CoffeeScript
Bumps [uglify-js](https://github.com/mishoo/UglifyJS2) from 2.2.5 to 3.6.4. Release notes *Sourced from [uglify-js's releases](https://github.com/mishoo/UglifyJS2/releases).* > ## v3.6.4 > > > ## v3.6.3 > > > ## v3.6.2 > >...
Follows the proposed syntax by creating a new node type.
Operator overloading is a great feature of languages like ruby and c++, especially for things like matrix arithmetic. I wrote a function for operator overloading (ironically in coffeescript) that works...
https://www.chillingeffects.org/notices/10275257#infringing_url_598767469
Hey all, I'm glad to see that there is the same spark that died in coffeescript reignited here. Originally I'm sure they meant to continually reinvent conventions as to what...
Just an idea. How we do it at Bevry: https://github.com/bevry/docpad/blob/master/HISTORY.md Best, Mike
Similar to Groovy's [spread operator](http://groovy.codehaus.org/Operators#Operators-SpreadOperator): ``` array*.property ``` as sugar for: ``` element.property for element of array ``` Essentially, the spread operator is a syntax level `map` or `forEach` for...
Whenever I start out with a hushed function ``` thing.onclick !-> console.log \clicked ``` And then want to add a parameter, I usually end up doing this: ``` thing.onclick (e)...
`coco -c` seems to be dropping the expected `.js` suffix when invoked on a file that contains more than one `.` in its name. Consider the following: ``` bash $...
The current rule for generating implicit block is too complicated to explain in a few sentences. For example the following: ``` switch case a then if b then c else...