rybalkinsd / kohttp

Kotlin DSL http client
https://kohttp.gitbook.io
Apache License 2.0
478 stars 42 forks source link

Response ext improvements. Close body #132

Closed rybalkinsd closed 5 years ago

rybalkinsd commented 5 years ago

It's better to close body calling asString()

fun Response.asString(): String? = body()?.use { it.string() }