mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:02:36 +09:00 
			
		
		
		
	Typescript error count is reduced from 633 to 540 with this. No runtime changes except in test code.
		
			
				
	
	
		
			16 lines
		
	
	
		
			383 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			383 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
export function pathEscapeSegments(s: string): string {
 | 
						|
  return s.split('/').map(encodeURIComponent).join('/');
 | 
						|
}
 | 
						|
 | 
						|
function stripSlash(url: string): string {
 | 
						|
  return url.endsWith('/') ? url.slice(0, -1) : url;
 | 
						|
}
 | 
						|
 | 
						|
export function isUrl(url: string): boolean {
 | 
						|
  try {
 | 
						|
    return stripSlash((new URL(url).href)).trim() === stripSlash(url).trim();
 | 
						|
  } catch {
 | 
						|
    return false;
 | 
						|
  }
 | 
						|
}
 |