We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6669d62 commit 4918b15Copy full SHA for 4918b15
1 file changed
src/logs/parser.ts
@@ -12,8 +12,8 @@ export const URLRegex = /([{([]*https?:\/\/[a-z0-9]+(?:-[a-z0-9]+)*\.[^\s<>|'",]
12
* ?: Non-capturing group
13
* (?:\u001b[) : Match ESC[
14
* (?:[\?|#])??: Match also ? and # formats that we don't supports but want to eat our special characters to get rid of ESC character
15
- * (?:[0-9]{1,3})?: Match one or more occurances of the simple format we want with out semicolon
16
- * (?:(?:;[0-9]{0,3})*)?: Match one or more occurances of the format we want with semicolon
+ * (?:[0-9]{1,3})?: Match one or more occurrences of the simple format we want with out semicolon
+ * (?:(?:;[0-9]{0,3})*)?: Match one or more occurrences of the format we want with semicolon
17
*/
18
19
// eslint-disable-next-line no-control-regex
0 commit comments