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

jvmMain.com.fleeksoft.ksoup.Platform.jvm.kt Maven / Gradle / Ivy

package com.fleeksoft.ksoup

import okio.*

internal actual fun readGzipFile(file: Path): BufferedSource {
    return readFile(file).gzip().buffer()
}

internal actual fun readFile(file: Path): BufferedSource {
    return FileSystem.SYSTEM.source(file).buffer()
}

public actual object Platform {
    public actual val current: PlatformType
        get() = PlatformType.JVM
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy