maybe
maybe copied to clipboard
Maybe is a type that wraps optional values
Resolves #13. Very willing to discuss this further!
I am using `maybe` in React Native, in the props of a custom text component. The custom component should set the underlying `Text` component prop `numberOfLines` to `1` by default,...
I have been looking at the `maybe` source code and trying to work out how to improve the typing of the `.filter()` method but I haven't worked anything out. The...
What would the `maybe` version of the following be? ```js let valueX = null let valueY = null if (valueX && valueY) { // do something with valueX and valueY...