Files

10 lines
206 B
TypeScript
Raw Permalink Normal View History

2026-03-22 18:07:19 +00:00
import Piscina from '../..';
import { resolve } from 'path';
const pool = new Piscina({
filename: resolve(__dirname, 'eval.js'),
maxThreads: 1
});
pool.runTask('console.log("A"); console.log("B");');