Skip to content
This repository was archived by the owner on Apr 8, 2023. It is now read-only.

Commit 31faf4e

Browse files
committed
refactor(providers): Drop dead code
1 parent 6b937f6 commit 31faf4e

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/providers/embedded.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,11 @@ export default class EmbeddedProvider extends BaseProvider {
5959
if (char === '<' && text.substr(pos, 8) === '</style>') {
6060
// Find first newline symbol for the current style tag
6161
let previous = pos;
62-
let indent = '';
6362

6463
do {
6564
char = text.charAt(previous);
6665

6766
previous--;
68-
69-
indent += char;
7067
} while (char !== '\n' && previous >= 0);
7168

7269
const blockEndIndex = pos - (pos - previous - 1);

0 commit comments

Comments
 (0)