mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	[utils] Improve js_to_json comment regex
				
					
				
			Capture the newline character as part of a single-line comment From #497, Authored by: fstirlitz
This commit is contained in:
		| @@ -1054,6 +1054,9 @@ class TestUtil(unittest.TestCase): | ||||
|         on = js_to_json('{ "040": "040" }') | ||||
|         self.assertEqual(json.loads(on), {'040': '040'}) | ||||
|  | ||||
|         on = js_to_json('[1,//{},\n2]') | ||||
|         self.assertEqual(json.loads(on), [1, 2]) | ||||
|  | ||||
|     def test_js_to_json_malformed(self): | ||||
|         self.assertEqual(js_to_json('42a1'), '42"a1"') | ||||
|         self.assertEqual(js_to_json('42a-1'), '42"a"-1') | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 felix
					felix