{"ScriptPreparationCode":"const url = \u0027https://example.com/some/deep/path?foo=bar\u0026another=param\u0026hello=world\u0027;\r\n\r\nconst urlObj = new URL(url);\r\nconst PARAM = urlObj.searchParams.get(\u0027another\u0027);\r\n\r\nfunction getParam() {\r\n const urlObj = new URL(url);\r\n const param = urlObj.searchParams.get(\u0027another\u0027);\r\n return param;\r\n}\r\n\r\n","TestCases":[{"Name":"Creating URL","Code":"console.log(getParam());","IsDeferred":false},{"Name":"Just variable access","Code":"console.log(PARAM);","IsDeferred":false}]}