aboutsummaryrefslogblamecommitdiffstats
path: root/src/utils/Helpers.jsx
blob: 17c0351b136418075b09337cefc8812d512536cf (plain) (tree)
1
2
3
4
5
6
7






                                                                             
import moment from 'moment'

const isPlusAccount = userProfile => {
  return userProfile?.expiration && moment(userProfile?.expiration).isAfter()
}

export { isPlusAccount }