1.0.0 • Published 8 years ago

@segment/is-meta v1.0.0

Weekly downloads
19,134
License
SEE LICENSE IN LI...
Repository
github
Last release
8 years ago

is-meta

CircleCI Codecov

Checks whether a DOM click event should open a link in a new tab.

Installation

$ npm install @segment/is-meta

Example

var isMeta = require('is-meta');

a.onclick = function (event) { 
  isMeta(event); // true or false
};