Richard van der Dys
Richard van der Dys
- Needed access to the request session, this was a simple fix
Thought it might be cool to have a feature like this: ``` b ="hello" a = 1 when b is empty // which in the background converts to: // ((typeof(b)...
Cannot delete using dynamic property key... For example: ``` x = {a:0, b:1, c:2} t = 'a' delete property t from x ``` You see the problem? We need a...
``` start() if not started ``` compiles to ``` (!(started)) ? start() : void 0; ``` and this throws a warning in Google Closure Compiler because we are not saving...
Similar functionality with this module https://github.com/paulirish/git-open/blob/master/git-open
I have a project with a structure like so, ``` project/ a/ package.json b/ package.json package.json ``` So our sub directories can have projects which have independent versions. Is it...
I would like to be able to pass coffeescript compiler options, such as '--map' for source mapping.