initial commit.
This commit is contained in:
18
node_modules/csvtojson/src/Processor.ts
generated
vendored
Normal file
18
node_modules/csvtojson/src/Processor.ts
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
import { Converter } from "./Converter";
|
||||
import P from "bluebird";
|
||||
import { JSONResult } from "./lineToJson";
|
||||
import { CSVParseParam } from "./Parameters";
|
||||
import { ParseRuntime } from "./ParseRuntime";
|
||||
|
||||
export abstract class Processor {
|
||||
protected params: CSVParseParam;
|
||||
protected runtime: ParseRuntime;
|
||||
constructor(protected converter: Converter) {
|
||||
this.params = converter.parseParam;
|
||||
this.runtime = converter.parseRuntime;
|
||||
}
|
||||
abstract process(chunk: Buffer,finalChunk?:boolean): P<ProcessLineResult[]>
|
||||
abstract destroy():P<void>;
|
||||
abstract flush(): P<ProcessLineResult[]>;
|
||||
}
|
||||
export type ProcessLineResult = string | string[] | JSONResult;
|
||||
Reference in New Issue
Block a user