session.ts 176 B

12345678
  1. const { fromPartition } = process._linkedBinding('electron_browser_session');
  2. export default {
  3. fromPartition,
  4. get defaultSession () {
  5. return fromPartition('');
  6. }
  7. };