mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2026-09-12 11:14:22 +00:00
9 lines
200 B
Kotlin
9 lines
200 B
Kotlin
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()
|
|
}
|
|
|