in Json.kt the following method exists: ``` fun Js...
# tornadofx
t
in Json.kt the following method exists:
Copy code
fun JsonObject?.contains(text: String?, ignoreCase: Boolean = true) =
        if (this == null || text == null) false else toString().toLowerCase().contains(text, ignoreCase)
I think the toLowerCase needs to be removed?