feat: add Python and Java regex engines

This commit is contained in:
2026-07-27 02:02:21 +02:00
parent 4951c966d4
commit 7079cde15f
95 changed files with 8866 additions and 251 deletions

View File

@@ -58,6 +58,10 @@ export class WorkerSupervisor<TOperation, TResult> {
return this.active !== null;
}
get hasWorker(): boolean {
return this.worker !== null;
}
run(
operation: TOperation,
timeoutMs: number,