mirror of
https://github.com/mappu/miqt.git
synced 2024-12-23 17:28:37 +00:00
36 lines
516 B
Go
36 lines
516 B
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"log"
|
|
"strings"
|
|
)
|
|
|
|
func maybeSuffix(counter int) string {
|
|
if counter == 0 {
|
|
return ""
|
|
}
|
|
|
|
return fmt.Sprintf("%d", counter+1)
|
|
}
|
|
|
|
func titleCase(s string) string {
|
|
return strings.ToUpper(s[0:1]) + s[1:]
|
|
}
|
|
|
|
func prettyPrint(obj interface{}) {
|
|
jb, err := json.MarshalIndent(obj, "", " ")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
log.Println(string(jb))
|
|
}
|
|
|
|
func ifv[T any](condition bool, trueval T, falseval T) T {
|
|
if condition {
|
|
return trueval
|
|
}
|
|
return falseval
|
|
} |