faker icon indicating copy to clipboard operation
faker copied to clipboard

generate fake data in go

Results 2 faker issues
Sort by recently updated
recently updated
newest added

**Steps to reproduce**: ``` import ( "fmt" fake "github.com/brianvoe/gofakeit" ) def some_func() { for i := 0; i < 100; i++ { fmt.Print(fake.URL()) } } ``` **Expected result**: No url...

Faker instance can't be used by different goroutines in parallel tests (`t.Parallel()`), there is a data race. I propose to make it thread-safe, since creating new instance in every test...