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

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

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

internal actual fun Any?.toCustomStringOrNull(): String? =
    if (this == null) null else toString().takeUnless { it == "[object Object]" }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy