Closed gerich-home closed 8 years ago
Instead of
var a = itDepends.value(10); a(15);
I want to write
var a = itDepends.value(10); a.write(15);
See #7 for why. There should be an ability to get "writer" to allow old syntax
var aWriter = a.write(); aWriter(15);
Instead of
I want to write
See #7 for why. There should be an ability to get "writer" to allow old syntax