All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jsMain.kotlinext.js.Object.kt Maven / Gradle / Ivy

There is a newer version: 1.0.1-pre.808
Show newest version
package kotlinext.js

import js.core.Object
import js.core.ReadonlyArray

fun Any.asJsObject(): Object = unsafeCast()

fun Any.getOwnPropertyNames(): ReadonlyArray =
    Object.getOwnPropertyNames(this)