electron/lib/common/webpack-provider.ts

19 lines
713 B
TypeScript
Raw Normal View History

2019-06-02 20:03:03 +00:00
// This file provides the global, process and Buffer variables to internal
// Electron code once they have been deleted from the global scope.
//
// It does this through the ProvidePlugin in the webpack.config.base.js file
// Check out the Module.wrapper override in renderer/init.ts for more
// information on how this works and why we need it
// Rip global off of window (which is also global) so that webpack doesn't
// auto replace it with a looped reference to this file
const _global = typeof globalThis !== 'undefined' ? globalThis.global : (self as any || window as any).global as NodeJS.Global;
2020-03-20 20:28:31 +00:00
const process = _global.process;
const Buffer = _global.Buffer;
2019-06-02 20:03:03 +00:00
export {
_global,
process,
Buffer
2020-03-20 20:28:31 +00:00
};