feat: Get json dataset from stream, convert into NudgerData, start to implement DMN concepts

This commit is contained in:
Lucàs
2024-10-02 20:37:44 +02:00
parent ffc1ad3e84
commit 4c92b856c0
53 changed files with 1234 additions and 73 deletions
+4 -4
View File
@@ -3,10 +3,10 @@ import { Duplex } from "node:stream";
import { Archive } from "./";
class GzipArchive implements Archive {
public static instance: Archive = new GzipArchive();
public static instance: Archive = new GzipArchive();
public extract(source: string): Duplex {
return createGunzip();
}
public extract(source: string): Duplex {
return createGunzip();
}
}
export default GzipArchive;