blob: fbef7ad8712d58a746eb2ea9671de86be91d16a8 (
plain) (
tree)
|
|
import { exists } from './misc'
import { FollowState } from '@shared/models'
function isFollowStateValid (value: FollowState) {
if (!exists(value)) return false
return value === 'pending' || value === 'accepted'
}
// ---------------------------------------------------------------------------
export {
isFollowStateValid
}
|