electron/spec/fixtures/module/asar.js

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

6 lines
126 B
JavaScript
Raw Normal View History

const fs = require('node:fs');
2016-03-25 20:03:49 +00:00
process.on('message', function (file) {
process.send(fs.readFileSync(file).toString());
});