1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-27 21:05:53 +00:00

eslint: unnecessary escape

This commit is contained in:
lemonslut 2025-06-08 01:13:43 -06:00
parent 7e55133d20
commit 44d4adbfc7
No known key found for this signature in database

View file

@ -202,7 +202,7 @@ export default {
out = []; out = [];
for(const line of lines) { for(const line of lines) {
const match = /^(?:(.*?) \()?(\/[^:\)]+):(\d+):(\d+)\)?$/.exec(line); const match = /^(?:(.*?) \()?(\/[^:)]+):(\d+):(\d+)\)?$/.exec(line);
if ( match ) if ( match )
out.push([ out.push([
match[1] || '???', match[1] || '???',
@ -334,4 +334,4 @@ export default {
} }
} }
</script> </script>