1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/helpers/utils/window.ts

4 lines
116 B
TypeScript
Raw Normal View History

export const openWindow = (url: string, target: string) => {
window.open(url, target || '_blank', 'noopener');
};