Daniel Steigerwald

Results 107 comments of Daniel Steigerwald

@cathykc How many tabs did you have? I encountered this error only with two or more tabs.

@quolpr Are you working on that? I can do it.

@timwis As for 1., check https://github.com/jlongster/absurd-example-project, that file is there. As for 4., try to add `/` ``` locateFile: (file: string) => `/${file}` ```

Please don't add any DOM related stuff since it would break non DOM js enviroments.

+1 We demand that :-) Should I send PR?

It's possible to use buffer for Closure Compiler. But unfortunatelly not like that: ``` files.map(function(file) { var src = file.contents.toString(); jar.stdin.write(src); }); jar.stdin.end() ``` From my experiments it seems that...

No, that's design flow to mock browser in the React Native.

`match` is renamed `fold`, which is deprecated right now.

@enricopolanski You are right. Almost everywhere `fold` is an alias of `match` except for `TaskEither` where `fold` is an alias of `matchE`. https://gcanti.github.io/fp-ts/guides/code-conventions.html#what-an-e-suffix-means-eg-matche I just spend a few minutes trying...

@enricopolanski It looks like `match` is a new `fold` and `fold` is `match` with an effect.