소스 검색

Remove filtering of empty lines from grid

I'm not sure what problem this originally solved, but now it makes no
sense.
ApisNecros 1 년 전
부모
커밋
71f64b312d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      starfish.js

+ 1 - 1
starfish.js

@@ -109,7 +109,7 @@ class CodeBox {
         this.outputDOM.value = "";
 
         const cbRaw = this.codeBoxDOM.value;
-        const rows = cbRaw.split("\n").filter((r) => r.length);
+        const rows = cbRaw.split("\n");
 
         let maxRowLength = 0;
         for(const row of rows) {