jiti-meet/react/features/base/util/openURLInBrowser.web.js

12 lines
204 B
JavaScript
Raw Normal View History

2019-10-11 18:09:50 +00:00
// @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');
}