Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
const { shell } = require('electron')
const exLinksBtn = document.getElementById('open-ex-links')
exLinksBtn.addEventListener('click', (event) => {
shell.openExternal('https://electronjs.org')
})