mirror of https://github.com/Chocobozzz/PeerTube
6 lines
194 B
TypeScript
6 lines
194 B
TypeScript
|
export const uuidRegex = '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}'
|
||
|
|
||
|
export function removeFragmentedMP4Ext (path: string) {
|
||
|
return path.replace(/-fragmented.mp4$/i, '')
|
||
|
}
|