index.js 139B

1234
  1. export function isExternal (link) {
  2. return link.toLowerCase().indexOf('http') === 0 || link.toLowerCase().indexOf('mailto') === 0
  3. }