commonMain.io.revenuemonster.sdk.util.Random.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rm-kotlin-sdk-jvm Show documentation
Show all versions of rm-kotlin-sdk-jvm Show documentation
Revenue Monster Kotlin Multiplatform SDK
package io.revenuemonster.sdk.util
fun randomString(size: Int): String {
val alphabet: List = ('a'..'z') + ('A'..'Z') + ('0'..'9')
return List(size) { alphabet.random() }.joinToString("")
}