Event Delegation

What delegation pattern is shown here?
document.addEventListener('click', e => {
  if (e.target.closest('.item')?.contains(e.target.closest('.exclude'))) return;
  // Handle non-excluded clicks
});
Next Question (10/20)