I've been able to call Kotlin/JS from the browser ...
# javascript
t
I've been able to call Kotlin/JS from the browser when the modules are set to "plain", but can't figure it out when "UMD". Can anyone point to an example?
For the record, you can access KotlinJS as follows from JS:
Copy code
val myModuleName = "testModule"
window[myModuleName].myFunction()