Skip to content

Instantly share code, notes, and snippets.

@rjhilgefort
Created December 23, 2018 06:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rjhilgefort/e64ede5223f29624d3dc2a4bc8a4a915 to your computer and use it in GitHub Desktop.
Save rjhilgefort/e64ede5223f29624d3dc2a4bc8a4a915 to your computer and use it in GitHub Desktop.
const maybeHof = compose(when, complement)(isNil)
const maybeToUpper = maybeHof(toUpper)
maybeToUpper(null) // null
maybeToUpper(undefined) // undefined
maybeToUpper('foo') // 'FOO'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment