mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-24 12:56:01 +00:00
8 lines
155 B
JavaScript
8 lines
155 B
JavaScript
export default function getElectron() {
|
|
if (window.require) {
|
|
const electron = window.require('electron');
|
|
return electron;
|
|
}
|
|
return null;
|
|
}
|