UNPKG

officiavoluptas

Version:
9 lines (8 loc) 154 B
export const openLink = (link: string, newTab = false) => { if (newTab) { window.open(link) return } window.location.href = link return }