mirror of
https://github.com/electron/electron.git
synced 2026-01-10 07:58:08 -05:00
10 lines
210 B
HTML
10 lines
210 B
HTML
<html>
|
|
<body>
|
|
<script type="text/javascript" charset="utf-8">
|
|
require('node:fs').readdir(process.cwd(), () => {
|
|
require('electron').ipcRenderer.send('async-node-api-done');
|
|
})
|
|
</script>
|
|
</body>
|
|
</html>
|