Polyfill for the JavaScript Event path/composedPath property
npm install event-propagation-pathpropagationPath method on any Event object.
window.addEventListener('click', (event) => {
if (!event.propagationPath().includes(this.container)) {
this.container.classList.remove('expanded');
} return false;
};);
``