continue to try to add wasm target

This commit is contained in:
2024-08-29 14:13:02 +06:00
parent 4ccc5b6a64
commit ef75d82244
12 changed files with 304 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package dev.inmo.micro_utils.common
import kotlinx.browser.window
fun openLink(link: String, target: String = "_blank", features: String = "") {
window.open(link, target, features) ?.focus()
}