You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
glitch_img/util.go

26 lines
351 B

2 weeks ago
package main
import (
"fmt"
"path/filepath"
)
func check(e error, s string) {
if e != nil {
fmt.Errorf(s)
}
}
func dots(count int) string {
dotStr := ""
for i := 0; i < count; i++ {
dotStr += "."
}
return dotStr
}
2 weeks ago
func stripExtension(filename string) string {
ext := filepath.Ext(filename)
return filename[:len(filename)-len(ext)]
}