bool.go 146 B

12345678910
  1. package gofakeit
  2. // Bool will generate a random boolean value
  3. func Bool() bool {
  4. if randIntRange(0, 1) == 1 {
  5. return true
  6. }
  7. return false
  8. }