提交 5a8146c6 编写于 作者: yanghye's avatar yanghye

upgrade-dev v2.3.46

上级 ef3bda2a
......@@ -49,6 +49,14 @@ const (
isZos = runtime.GOOS == "zos" //not support
)
// Concat 字符串拼接
func Concat(str ...string) string {
var c = strings.Builder{}
for _, v := range str {
c.WriteString(v)
}
return c.String()
}
func IsWindows() bool {
return isWindows
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册