Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 292 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 292 Bytes

open-links

Open links in new tabs or windows simultaneously

Install

npm install open-links

Usage

import openLinks from 'open-links';

const links = [
  'https://www.github.com',
  'https://www.nodejs.org',
  'https://www.npmjs.org'
];

openLinks(links, '_blank');