LibreTube/app/src/main/java/com/github/libretube/extensions/ToID.kt

13 lines
285 B
Kotlin
Raw Normal View History

2022-07-29 12:30:13 +05:30
package com.github.libretube.util
/**
* format a Piped route to an ID
*/
fun Any?.toID(): String {
return this!!
.toString()
.replace("/watch?v=", "") // videos
.replace("/channel/", "") // channels
.replace("/playlist?list=", "") // playlists
}