summaryrefslogtreecommitdiff
path: root/test/fixtures/worker-from-argv.js
blob: dcf9cb4cea99fe7052e1a1704ff871679cc6d1a8 (plain)
1
2
3
'use strict';
const {Worker} = require('worker_threads');
new Worker(process.argv[2]).on('exit', process.exit);