I want to create objects in Ruby style with CoffeeScript. So I want to do something like
class A
constructor: (@params) ->
a = new A {send: true, name: "fit"}
a.send #true
Is there any "standard" way to do this?
|
I want to create objects in Ruby style with CoffeeScript. So I want to do something like
Is there any "standard" way to do this? |
||||
|
|
|
There is no way to do it directly. You could define a base class that has code to do it, like such
|
||||
|