import {fakeLinkClick} from './fakeLinkClick'; export const openUrlInNewTab = (url: string, attributes: Record = {}): void => { fakeLinkClick(url, {target: '_blank', rel: 'noopener noreferrer', ...attributes}); };