electron/spec/fixtures/apps/libuv-hang/preload.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
528 B
JavaScript
Raw Normal View History

2021-03-22 20:11:03 +00:00
const { contextBridge, ipcRenderer } = require('electron');
contextBridge.exposeInMainWorld('api', {
// This is not safe, do not copy this code into your app
invoke: (...args) => ipcRenderer.invoke(...args),
2021-03-22 20:11:03 +00:00
run: async () => {
const { promises: fs } = require('node:fs');
2021-03-22 20:11:03 +00:00
for (let i = 0; i < 10; i++) {
const list = await fs.readdir('.', { withFileTypes: true });
for (const file of list) {
if (file.isFile()) {
await fs.readFile(file.name, 'utf-8');
}
}
}
}
});