Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import moment from 'moment';
export function isRecentlyRegistered( registrationDate: string, numberOfMinutes = 30 ) {
return (
registrationDate &&
moment.utc( registrationDate ).isAfter( moment.utc().subtract( numberOfMinutes, 'minutes' ) )
);
}