is there an easy way to check that a project does not use jdk specific classes and would work in kotlinjs?
u
540grunkspin
09/18/2018, 2:35 PM
I'm not sure really. I would just try to compile the project with js as a target and see how many errors (if any) that I get
i
ilya.gorbunov
09/18/2018, 6:43 PM
The easy way is to use multiplatform Kotlin projects. Then in the common part of that project you can only reference API declared in the common stdlib and other common libraries.