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

com.autonomousapps.kit.internal.strings.kt Maven / Gradle / Ivy

The newest version!
// Copyright (c) 2024. Tony Robalik.
// SPDX-License-Identifier: Apache-2.0
package com.autonomousapps.kit.internal

internal fun String.ensurePrefix(prefix: String = ":"): String {
  return if (startsWith(prefix)) this else "$prefix$this"
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy