9 lines
206 B
TypeScript
Executable file
9 lines
206 B
TypeScript
Executable file
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");');
|