mirror of
https://github.com/Xevion/scla-unsubscribe.git
synced 2025-12-10 04:08:36 -06:00
Latest iteration on email processing, RandBool perf
This commit is contained in:
@@ -193,7 +193,7 @@ func Bytes(bytes uint64) string {
|
||||
|
||||
// RandBool returns a random boolean
|
||||
func RandBool() bool {
|
||||
return rand.Intn(2) == 0
|
||||
return rand.Uint64()&1 == 1
|
||||
}
|
||||
|
||||
// FakeEmail generates a fake email address
|
||||
|
||||
Reference in New Issue
Block a user