12 lines
204 B
JavaScript
12 lines
204 B
JavaScript
|
// @flow
|
||
|
|
||
|
/**
|
||
|
* Opens URL in the browser.
|
||
|
*
|
||
|
* @param {string} url - The URL to be opened.
|
||
|
* @returns {void}
|
||
|
*/
|
||
|
export function openURLInBrowser(url: string) {
|
||
|
window.open(url, '', 'noopener');
|
||
|
}
|