mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
7 lines
162 B
JavaScript
7 lines
162 B
JavaScript
function sanitizeUrl(url) {
|
|
let u = decodeURI(url).trim().toLowerCase();
|
|
if (u.startsWith("javascript:"))
|
|
return "about:blank";
|
|
return url;
|
|
}
|