Skip to content

v0.3.0

Compare
Choose a tag to compare
@wmakeev wmakeev released this 02 Sep 19:07
· 13 commits to master since this release
  • Add get method to maybe

    const objValue = maybe({ book: { id: '3' } })
    
    objValue.get('book.id') // Maybe(3)
    
    objValue.get('foo.bar') // nothing