Conservative defaults for synchronous, in-memory CSV and TSV operations.
- Package
@sheetwrite/core
- Source
packages/core/src/delimited-text.ts#L25
Declaration
const DEFAULT_DELIMITED_TEXT_RESOURCE_LIMITS: Readonly<DelimitedTextResourceLimitsinterface DelimitedTextResourceLimits {
maxInputBytes: number;
maxOutputBytes: number;
maxRows: number;
maxColumns: number;
maxCells: number;
maxFieldBytes: number;
maxWriterWindowRows: number;
}interface DelimitedTextResourceLimits {
maxInputBytes: number;
maxOutputBytes: number;
maxRows: number;
maxColumns: number;
maxCells: number;
maxFieldBytes: number;
maxWriterWindowRows: number;
}interface DelimitedTextResourceLimits {
maxInputBytes: number;
maxOutputBytes: number;
maxRows: number;
maxColumns: number;
maxCells: number;
maxFieldBytes: number;
maxWriterWindowRows: number;
}Resource ceilings shared by synchronous CSV and TSV parsing and encoding.API reference →>