Add column resizing and reordering
All checks were successful
build / build (push) Successful in 1m26s

This commit is contained in:
2025-04-24 20:16:19 +09:30
parent 53f27e4b22
commit 5d8bd10e92
2 changed files with 7 additions and 5 deletions

View File

@@ -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({