Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
It can be nice and a solid codebase if you have a more FP background. The safety it provides and FP design patterns it enables are pretty good. So I like it more than TS, but maybe less than Elm/F#:Fable/Purescript.
I'm concerned about the factiousness of the community and leadership, and the package support and direction.
Also concerned about the language direction to be more of a "cooler typescript" and some of the less principled language changes on the roadmap.
Writing bindings might be "fun", but not sure it's great return in invested time.
Eh.. to date I'd put it in the "wait and see" category for larger teams.
Related Rants
So they are back, wanting another quick PR approved.
The PR:
```
let isDisabled = switch quantity > 0 {
| true =>
switch value !== "" {
| true => false
| false =>
switch inputStatus {
| Valid =>
switch inputData {
| Ok(a) => a !== 0.0 ? false : true
| Error(_) => true
}
| _ => true
}
}
| false => true
}
```
rant
pull requests
code