Eyal Halpern Shalev

Results 21 comments of Eyal Halpern Shalev

@kitsonk Could you update the issue title and description to represent the change from `Deno.compile` to `Deno.emit`. I opened denoland/deno#10272 because I couldn't find this issue.

@kitsonk Also, is there an issue (or discussion page) where the source of this problem is explained?

@kitsonk what if `sources` contained the desired module name in addition to the source file? ```typescript type Source = string | { name: string, data: string } interface EmitOptions {...

I've forked the project and started working on the conversion (in my free time). But I'm currently labeling the conversion as a pet project, so don't assign it to me...

@getify I'm working on the implementation, but I don't understand the purpose of the `concat` method, as it is implemented in the `Just` monad (for simplicity). Why does `just.of([1, 2]).concat([3])`...

@getify Also, what is the purpose of the `_is` function and the `brand` variable?

I got confused because of the test in `just.test.js`: ```javascript qunit.test("#concat", (assert) => { assert.deepEqual( just.of([1, 2]).concat([3]), [[1, 2, 3]], "should concat a just array to an array" ); });...

@getify After a few months of hiatus, I returned to this conversion and had some more questions: 1. What is the purpose of the `fold` method? _I see that it...

That was helpful. I had a hunch on most of the stuff you explained, but wanted to make sure instead of making assumptions. Putting aside my TS implementation I think...

@getify Expanding on your previous answer, is it true that the `Maybe` methods (`map`,`bind`,`ap`,...) will always return a `Maybe` type. And the same goes for all the other categories? If...