Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
const path = require('node:path');
const childProcess = require('node:child_process');
const crashPath = path.join(__dirname, 'node-crash.js');
const child = childProcess.fork(crashPath, { silent: true });
child.on('exit', () => process.exit(0));