mirror of
https://github.com/vmware-tanzu/pinniped.git
synced 2025-12-23 14:25:50 +00:00
15 lines
300 B
Go
15 lines
300 B
Go
// Copyright 2024 the Pinniped contributors. All Rights Reserved.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package testutil
|
|
|
|
import "strings"
|
|
|
|
func SplitByNewline(lineToSplit string) []string {
|
|
if len(lineToSplit) == 0 {
|
|
return nil
|
|
}
|
|
|
|
return strings.Split(strings.TrimSpace(lineToSplit), "\n")
|
|
}
|