blob: 17c0351b136418075b09337cefc8812d512536cf (
plain) (
blame)
1
2
3
4
5
6
7
|
import moment from 'moment'
const isPlusAccount = userProfile => {
return userProfile?.expiration && moment(userProfile?.expiration).isAfter()
}
export { isPlusAccount }
|