com.autonomousapps.kit.internal.strings.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-testkit-support Show documentation
Show all versions of gradle-testkit-support Show documentation
A DSL for building test fixtures with Gradle TestKit
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