blob: 8e8cea1fc762ce94bf20f04e18f436acdd35a3a1 [file] [log] [blame]
@file:JvmName("StreamsUtils")
package androidx.webgpu.helper
import java.io.InputStream
import java.io.InputStreamReader
import java.nio.charset.StandardCharsets
import java.util.Scanner
public fun InputStream.asString(): String =
Scanner(InputStreamReader(this, StandardCharsets.UTF_8)).useDelimiter("\\A").run {
if (hasNext()) next() else ""
}