export function isPopout() {
  return window.location.pathname === '/popout/' ? true : false;
}

export function popoutEvent(type, data) {
  const e = new Event('popout');
  e.originalEvent = {
    type,
    data
  };
  window.opener.dispatchEvent(e);
}
