File size: 132 Bytes
b91e262
 
 
 
 
 
1
2
3
4
5
6
7
export function encodeURIPath(file: string) {
  return file
    .split('/')
    .map((p) => encodeURIComponent(p))
    .join('/')
}