Extract the value from a Some, or return fallback for None. Supports data-first and curried (pipe-friendly) forms.
fallback
const displayName = pipe( fromNullable(user.nickname), getOr("Anonymous"), ) Copy
const displayName = pipe( fromNullable(user.nickname), getOr("Anonymous"), )
Extract the value from a Some, or return
fallbackfor None. Supports data-first and curried (pipe-friendly) forms.