(url: string)
| 340 | |
| 341 | const timestampRE = /\bt=\d{13}&?\b/ |
| 342 | export function removeTimestampQuery(url: string): string { |
| 343 | return url.replace(timestampRE, '').replace(trailingSeparatorRE, '') |
| 344 | } |
| 345 | |
| 346 | export async function asyncReplace( |
| 347 | input: string, |
no outgoing calls
no test coverage detected