mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-08-24 03:12:33 +02:00
Initial open source release
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
package utils
|
||||
|
||||
import (
|
||||
"strings"
|
||||
"time"
|
||||
)
|
||||
|
||||
func CSVRemoveFormulaStart(input string) string {
|
||||
if input == "" {
|
||||
return input
|
||||
}
|
||||
if len(input) > 0 && strings.ContainsAny(input[0:1], "=@+-") {
|
||||
return "'" + input
|
||||
}
|
||||
return input
|
||||
}
|
||||
|
||||
func CSVFromDate(d *time.Time) string {
|
||||
if d == nil {
|
||||
return ""
|
||||
}
|
||||
return CSVRemoveFormulaStart(d.Format(time.RFC3339))
|
||||
}
|
||||
Reference in New Issue
Block a user