Skip to content

Commit

Permalink
Fix linting post #250
Browse files Browse the repository at this point in the history
  • Loading branch information
cdloh committed Jan 31, 2023
1 parent fb66ca0 commit cfedab8
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/processConditionals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -275,9 +275,7 @@ function esi_seperator_splitter(condition: string): boolean {
startingIndex = (token.index as number) + seperator.length;
}

const finalRes = handleString(
condition.substring(startingIndex).trim()
);
const finalRes = handleString(condition.substring(startingIndex).trim());
valid = validityCheck(finalRes, prevSeperator);

return valid;
Expand Down

0 comments on commit cfedab8

Please sign in to comment.