I'm translating some code from js to coffeescript:
I got an issue with the compiler for an object property containing a dash character:
If I do this:
params =
fill: 'white'
stroke: '#fff'
'stroke-width': 2
'text-anchor': y_label_anchor
I get a weird compiler error without any line number saying: Error: cannot have an implicit value in an implicit object.
If I do this:
params =
fill: 'white'
stroke: '#fff'
stroke-width: 2
text-anchor: y_label_anchor
I get Parse error on line 1234: Unexpected '-'.
I totally get that Coffescript doesn't want to mess with dashes in property names. The thing is, I still have to figure out a way to convert this object so I can pass it to a library function in javascript.
Anybody knows a way I can create this object in Coffeescript?
Thank you
o = k: v, xsomewhere? – mu is too short Nov 8 '12 at 21:08