mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 18:44:16 +00:00
8 lines
321 B
JavaScript
8 lines
321 B
JavaScript
// All of the Node.js APIs are available in the preload process.
|
|
// It has the same sandbox as a Chrome extension.
|
|
window.addEventListener('DOMContentLoaded', () => {
|
|
for (const versionType of ['chrome', 'electron', 'node']) {
|
|
console.log(`${versionType}-version`, process.versions[versionType]);
|
|
}
|
|
});
|
|
|