Browse Source

Respect filename format

pull/12/head
andreimarcu 9 years ago
parent
commit
ca0754725b
  1. 2
      util.go

2
util.go

@ -8,7 +8,7 @@ import (
// from http://stackoverflow.com/a/31832326
var src = rand.NewSource(time.Now().UnixNano())
const letterBytes = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
const letterBytes = "abcdefghijklmnopqrstuvwxyz1234567890"
const (
letterIdxBits = 6 // 6 bits to represent a letter index
letterIdxMask = 1<<letterIdxBits - 1 // All 1-bits, as many as letterIdxBits

Loading…
Cancel
Save