Guest User

Untitled

a guest
Aug 10th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. const first = (array) => {
  2. if(Array.isArray(array) && array.length > 0) {
  3. return Maybe.Just(array[0])
  4. } else {
  5. return Maybe.Nothing()
  6. }
  7. }
  8.  
  9. first([1]) == Maybe.Just(1)
  10. first([]) == Maybe.Nothing()
  11. first('ouch') == Maybe.Nothing()
Add Comment
Please, Sign In to add comment