fix linter issues

This commit is contained in:
hay-kot
2021-08-07 16:49:55 -08:00
parent a1b1b529a3
commit 3ed197a843
21 changed files with 58 additions and 33 deletions

View File

@@ -41,7 +41,7 @@ export default {
const split = this.inputText.split("\n");
split.forEach((element, index) => {
if ((element === "\n") | (element == false)) {
if ((element === "\n") | (element === false)) {
split.splice(index, 1);
}
});