Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
import { fetchWithSession } from '@electron/internal/browser/api/net-fetch';
import { net } from 'electron/main';
const { fromPartition, fromPath, Session } = process._linkedBinding('electron_browser_session');
Session.prototype.fetch = function (input: RequestInfo, init?: RequestInit) {
return fetchWithSession(input, init, this, net.request);
};
export default {
fromPartition,
fromPath,
get defaultSession () {
return fromPartition('');
}