snipshare
@antawn
Member since January 30, 2026
2 pastes ยท 0 collections
from django.db import models from django.utils import timezone class TimestampMixin(models.Model):
/** * Throttle: fire at most once per `limit` ms */ export function throttle(fn, limit = 200) { let inThrottle = false;