electron/spec/fixtures/module/preload-ipc.js

5 lines
100 B
JavaScript
Raw Normal View History

var ipc = require('ipc');
ipc.on('ping', function(message) {
ipc.sendToHost('pong', message);
});