node/benchmark/fixtures/echo.worker.js

8 lines
129 B
JavaScript
Raw Normal View History

'use strict';
const { parentPort } = require('worker');
parentPort.on('message', (msg) => {
parentPort.postMessage(msg);
});