This workaround works for me: ``` inline fun Any?....
# javascript
k
This workaround works for me:
Copy code
inline fun Any?.isUndefined() = isUndefined(this)
inline fun isUndefined(value: Any?) = js("value === void 0")