[utils] Drop trailing comma before closing brace
This commit is contained in:
parent
ae0dd4b298
commit
ba9e68f402
2 changed files with 7 additions and 1 deletions
|
@ -1577,7 +1577,7 @@ def js_to_json(code):
|
|||
'(?:[^'\\]*(?:\\\\|\\['"nu]))*[^'\\]*'|
|
||||
[a-zA-Z_][.a-zA-Z_0-9]*
|
||||
''', fix_kv, code)
|
||||
res = re.sub(r',(\s*\])', lambda m: m.group(1), res)
|
||||
res = re.sub(r',(\s*[\]}])', lambda m: m.group(1), res)
|
||||
return res
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue