Joe Grund

Results 61 comments of Joe Grund

Would it be possible to add me as a maintainer of this repo? I have the bandwidth to address PRs and changes as they occur.

@rpominov I am thinking of the second option. Both can be represented in flow, though the second in a more complex fashion via overloads.

I think option 1 is more of a surfacing to user code of what happens in languages that support currying.

I think the advantage of the second version is that it can be transparent: i.e. `fn(a, b)`. The first version takes two invocations regardless if the user plans to fully...

Ultimately, It would be great if currying was not a user-land construct in JS and was part of the language.

Something interesting about currying at the library level. Using the implementation in `Fun.js`, consider: ``` const result = maybe.map( (a):number => a + 1, maybe.inj(3) ); const result2 = maybe.map(...

+1, Having this will make amdefine a usable option for me.

Looks like the argument issue is fixed. However, `crm node standby` returned a 0 exit code on a node but the node never moved into standby. This happened on 1/4...

Hi, It looks like to fix, we'd want to change all the `NodeJs.EventEmitter` references to just `EventEmitter` (once PR to add `AutoOpen` is landed and published). I've also created a...

> For what I've seen in the API part, we are using Django's IntegerField which is i32. It becomes f64 because JS only supports f64 (and max integer 2^53 -...