8 lines
174 B
React
8 lines
174 B
React
![]() |
import moment from 'moment'
|
||
|
|
||
|
const isPlusAccount = userProfile => {
|
||
|
return userProfile?.expiration && moment(userProfile?.expiration).isAfter()
|
||
|
}
|
||
|
|
||
|
export { isPlusAccount }
|