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

org.kbods.utils.json.kt Maven / Gradle / Ivy

There is a newer version: 0.11.1
Show newest version
package org.kbods.utils

import com.beust.klaxon.JsonObject

fun JsonObject.safeDouble(name: String): Double {
    return (this[name]!! as Number).toDouble()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy