Skip to content

Instantly share code, notes, and snippets.

@kylecorbelli
Last active June 22, 2018 14:43
Show Gist options
  • Save kylecorbelli/3d36def45f471a78f1aa267c35c6fdc1 to your computer and use it in GitHub Desktop.
Save kylecorbelli/3d36def45f471a78f1aa267c35c6fdc1 to your computer and use it in GitHub Desktop.
const safeHead = <T> (list: ReadonlyArray<T>): Maybe<T> =>
list.length === 0
? Nothing()
: Just(list[0])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment