All Downloads are FREE. Search and download functionalities are using the official Maven repository.

info.laht.threekt.loaders.LoaderUtils.kt Maven / Gradle / Ivy

The newest version!
package info.laht.threekt.loaders

object LoaderUtils {

    fun extractUrlBase(url: String): String {

        @Suppress("NAME_SHADOWING")
        val url = url.replace("\\", "/")

        val index = url.lastIndexOf("/")

        if (index == -1) return "./"

        return url.substring(0, index + 1)

    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy