mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-05-19 18:58:03 +02:00
13 lines
176 B
Go
13 lines
176 B
Go
package utils
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestTimeEpochFormat(t *testing.T) {
|
|
dateAdded := int64(13220074277028707)
|
|
s := TimeEpochFormat(dateAdded)
|
|
fmt.Println(s)
|
|
}
|