For example, I’ve got code that depends on Char.isLetter, Char.isDigit, etc. This stdlib API is supported on JVM and native platforms, but not JS, for which I have an inferior alternative implementation. I cannot write it in a source set that depends on stdlib-common, because it does not define those APIs. Is there an easy way to avoid duplicating the logic between native platforms?