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

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

The 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