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

jsMain.com.bkahlert.kommons.debug.plain.kt Maven / Gradle / Ivy

There is a newer version: 2.8.0
Show newest version
package com.bkahlert.kommons.debug

internal actual val Collection<*>.isPlain: Boolean
    get() = this::class.js.name.let {
        it.endsWith("HashSet") || it.endsWith("ArrayList")
    } || keys.contains("length")

internal actual val Map<*, *>.isPlain: Boolean
    get() = this::class.js.name.endsWith("HashMap") || keys.contains("length")




© 2015 - 2024 Weber Informatics LLC | Privacy Policy