BoolToString transform bool to string
(b bool)
| 254 | |
| 255 | // BoolToString transform bool to string |
| 256 | func BoolToString(b bool) string { |
| 257 | if b { |
| 258 | return "1" |
| 259 | } |
| 260 | return "0" |
| 261 | } |
| 262 | |
| 263 | func EncodeTimeFlowString(str string, timeNow int64) string { |
| 264 | timeNow = timeNow / 1000 |
nothing calls this directly
no outgoing calls
no test coverage detected