You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

openURLInBrowser.web.js 204B

1234567891011
  1. // @flow
  2. /**
  3. * Opens URL in the browser.
  4. *
  5. * @param {string} url - The URL to be opened.
  6. * @returns {void}
  7. */
  8. export function openURLInBrowser(url: string) {
  9. window.open(url, '', 'noopener');
  10. }