diff options
author | Chocobozzz <me@florianbigard.com> | 2021-10-08 11:22:22 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-10-11 09:37:26 +0200 |
commit | ab7b4f525b2edef5379ed8eb6abe223186380197 (patch) | |
tree | 6d71c752be966c773082792f1de19815a2f38b40 /server/helpers | |
parent | 93a1e67f86be299b7337d229a2c15fbda0a0d6e1 (diff) | |
download | PeerTube-ab7b4f525b2edef5379ed8eb6abe223186380197.tar.gz PeerTube-ab7b4f525b2edef5379ed8eb6abe223186380197.tar.zst PeerTube-ab7b4f525b2edef5379ed8eb6abe223186380197.zip |
Remove unused comments
Diffstat (limited to 'server/helpers')
-rw-r--r-- | server/helpers/regexp.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/server/helpers/regexp.ts b/server/helpers/regexp.ts index cfc2be488..257054cea 100644 --- a/server/helpers/regexp.ts +++ b/server/helpers/regexp.ts | |||
@@ -4,7 +4,6 @@ function regexpCapture (str: string, regex: RegExp, maxIterations = 100) { | |||
4 | let m: RegExpExecArray | 4 | let m: RegExpExecArray |
5 | let i = 0 | 5 | let i = 0 |
6 | 6 | ||
7 | // tslint:disable:no-conditional-assignment | ||
8 | while ((m = regex.exec(str)) !== null && i < maxIterations) { | 7 | while ((m = regex.exec(str)) !== null && i < maxIterations) { |
9 | // This is necessary to avoid infinite loops with zero-width matches | 8 | // This is necessary to avoid infinite loops with zero-width matches |
10 | if (m.index === regex.lastIndex) { | 9 | if (m.index === regex.lastIndex) { |