hi there :wave: i wrote a function ```fun isNull(s...
# getting-started
j
hi there 👋 i wrote a function
Copy code
fun isNull(something : Any?): Boolean {
    return something == null
}
but i noticed when i use it, there it isnt smart-casting, is there something i can do to change that?