unloop a one iteration loop
This commit is contained in:
parent
aee4ad54b1
commit
ce0f473e81
2
fun.go
2
fun.go
|
@ -108,7 +108,6 @@ func shortxid(xid string) string {
|
|||
|
||||
func xfiltrate() string {
|
||||
letters := "BCDFGHJKLMNPQRSTVWXYZbcdfghjklmnpqrstvwxyz1234567891234567891234"
|
||||
for {
|
||||
var b [18]byte
|
||||
rand.Read(b[:])
|
||||
for i, c := range b {
|
||||
|
@ -117,7 +116,6 @@ func xfiltrate() string {
|
|||
s := string(b[:])
|
||||
return s
|
||||
}
|
||||
}
|
||||
|
||||
var re_hashes = regexp.MustCompile(`(?:^|\W)#[[:alnum:]]+`)
|
||||
|
||||
|
|
Loading…
Reference in New Issue