Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
const { ipcRenderer } = require('electron');
// Ensure fetch works from isolated world origin
fetch('https://localhost:1234').catch(err => {
ipcRenderer.send('isolated-fetch-error', err.message);
});