PrependTime prepends current time string to text and returns new string
(text string)
| 293 | |
| 294 | // PrependTime prepends current time string to text and returns new string |
| 295 | func PrependTime(text string) string { |
| 296 | date := time.Now() |
| 297 | return fmt.Sprintf("%02d:%02d:%02d ", date.Hour(), date.Minute(), date.Second()) + text |
| 298 | } |
| 299 | |
| 300 | // FindSymbol uses regexp from one or multiple clues to find variable or |
| 301 | // function symbol in obfuscated code. |
no outgoing calls
no test coverage detected