TS10 linhas280 bytes
apps/web/src/lib/source-path.ts
SHA-256
313e347e118032f37a8788821ea413054402cc68def651f657de10a95d171ff0
Somente leiturafonte-acf635076da2
export function encodeSourceSegment(segment: string): string {
return encodeURIComponent(segment)
.replaceAll('~', '%7E')
.replaceAll('%', '~')
}
export function decodeSourceSegment(segment: string): string {
return decodeURIComponent(segment.replaceAll('~', '%'))
}