mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
6 lines
224 B
TypeScript
6 lines
224 B
TypeScript
export function sanitizeUrl(url: string) {
|
|
const u = decodeURI(url).trim().toLowerCase()
|
|
const isAllowedUrlScheme = u.startsWith('http://') || u.startsWith('https://')
|
|
return isAllowedUrlScheme ? url : 'about:blank'
|
|
}
|