Add column resizing and reordering
All checks were successful
build / build (push) Successful in 1m26s
All checks were successful
build / build (push) Successful in 1m26s
This commit is contained in:
@@ -12,10 +12,8 @@ export interface RowsResponse {
|
||||
totalRows: bigint;
|
||||
}
|
||||
|
||||
const whitespaceRegex = /\s*/g;
|
||||
|
||||
const sanitisedFileName = (file: File) =>
|
||||
file.name.toLowerCase().replaceAll("'", '').replaceAll(whitespaceRegex, '');
|
||||
file.name.toLowerCase().replaceAll("'", '').replaceAll(/\s*/g, '');
|
||||
|
||||
//https://www.npmjs.com/package/@duckdb/duckdb-wasm
|
||||
@Injectable({
|
||||
|
||||
Reference in New Issue
Block a user