org.kbods.utils.json.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kbods-internals Show documentation
Show all versions of kbods-internals Show documentation
Internal commons and utils for KBODS
The newest version!
package org.kbods.utils
import com.beust.klaxon.JsonObject
fun JsonObject.safeDouble(name: String): Double {
return (this[name]!! as Number).toDouble()
}