mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
d7adbb6f41
* window open noopener
4 lines
116 B
TypeScript
4 lines
116 B
TypeScript
export const openWindow = (url: string, target: string) => {
|
|
window.open(url, target || '_blank', 'noopener');
|
|
};
|