2657469
1 2 3 4 5 6 7
import moment from 'moment' const isPlusAccount = userProfile => { return userProfile?.expiration && moment(userProfile?.expiration).isAfter() } export { isPlusAccount }