Eyal Halpern Shalev

Results 24 comments of Eyal Halpern Shalev

I'm suggesting a single `inspect(...)` function in the testing utility library.

1. I looked at the performance differences between creating objects via `new` vs using `{...}` (like in monio). And found that there isn't any significant performance difference between these two...

@getify I'm not sure I agree with the first part of your comment (about your distaste for classes in JS). But I agree that if this library provides Monads (a...

@getify Another question: Let's say we have a `Either:Right(5)` and we apply `.bind(n => Maybe.Just(inc(n))` on it. Should the resulting monad be `Either:Right(Maybe:Just(10))` or `Maybe:Just(10)`?

So proper usage of `chain` / `bind` / `flatMap`, is to keep inside the same category. Another question is about the implementation of `maybe.js` vs `either.js`: It seems like `Maybe`...

1. Have you considered using unique symbols for the private fields (and functions)? It won't make them inaccessible, but it will make it considerably harder to access, and they won't...

On an unrelated note, I see that there is no handling for invalid input in case of the `#ap` and `#concat` methods. Does that mean you are okay with throwing...

After research done by me, Rotem Reiss and Eran Vaknin we were able to uncover what was the vulnerability in the latest security patch. Read more in the white-paper that...

@madzak any updates on this?

Did anyone manage to work-around this issue? In one of my projects I've upgraded from AWS Java SDK V1 to V2 which means I get about 80 warning lines whenever...