goutils
goutils copied to clipboard
goutils is a golang utils library that focused on all aspects of reusable golang components.
Results
1
goutils issues
Sort by
recently updated
recently updated
newest added
github.com/printfcoder/goutils/stringutils isBlank 实现错误 func IsBlank(cs string) bool { if strLen := len(cs); strLen == 0 { return true } else { return len(strings.TrimSpace(cs)) != strLen } } 应该是trim 后和 0...