File size: 187 Bytes
246d201
 
 
 
 
 
 
1
2
3
4
5
6
7
8
export const sanitizeQuery = (query: string) =>
  query
    .trim()
    .replace(/https?:\/\//, "")
    .replace(/github.com\//, "")
    .replace(/\.git$/, "")
    .toLowerCase();