const sortDirectionMatch = match({
'"DESC"': () => desc,
'"ASC"': () => asc,
'default?': () => none,
})
// or
const sortDirectionMatch = match
.case('"DESC"', () => desc)
.case('"ASC"', () => asc)
.default(() => none, true)
const sortDirectionMatch = match({
'"DESC"': () => desc,
'"ASC"': () => asc,
'default?': () => none,
})
// or
const sortDirectionMatch = match
.case('"DESC"', () => desc)
.case('"ASC"', () => asc)
.default(() => none, true)