mirror of
https://github.com/electron/electron.git
synced 2026-01-14 09:58:04 -05:00
* refactor: prevent consistent early exception * Use _linkedBinding where possible * Remove dead electronBinding
9 lines
176 B
TypeScript
9 lines
176 B
TypeScript
const { fromPartition } = process._linkedBinding('electron_browser_session');
|
|
|
|
export default {
|
|
fromPartition,
|
|
get defaultSession () {
|
|
return fromPartition('');
|
|
}
|
|
};
|