is there an easy way to check that a project does ...
# announcements
c
is there an easy way to check that a project does not use jdk specific classes and would work in kotlinjs?
u
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
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.