UNPKG

@tanstack/router-core

Version:

Modern and scalable routing for React applications

8 lines (6 loc) 213 B
export function dehydrateSsrMatchId(id: string): string { return id.replaceAll('/', '\0') } export function hydrateSsrMatchId(id: string): string { return id.replaceAll('\0', '/').replaceAll('\uFFFD', '/') }