Refactor to responsive drawer

This commit is contained in:
Philipp Heckel 2022-02-24 20:18:46 -05:00
parent 0958c1d527
commit 703f94a25f
6 changed files with 205 additions and 157 deletions

View file

@ -60,7 +60,6 @@ export async function* fetchLinesIterator(fileURL) {
const re = /\n|\r|\r\n/gm;
let startIndex = 0;
let result;
for (;;) {
let result = re.exec(chunk);