We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
628a051
Just
Nothing
import { Just, Nothing } from `@wmakeev/mabes` class MyJust extends Just { constructor (value) { super(value) } // ... } let myJust = new MyJust(123)
b0cbf66
Add get method to maybe
get
const objValue = maybe({ book: { id: '3' } }) objValue.get('book.id') // Maybe(3) objValue.get('foo.bar') // nothing