mirror of
https://github.com/status-im/status-go.git
synced 2025-01-24 13:41:24 +00:00
b50c46caa8
* Commit initial change for settimeout/setinterval * Add initial tests for jail setTimeout/setInterval * Add ottoext dependency * Add fetch jail test with function * Add dependencies of fetch from ottoext * Refactor with regards to PR review * Refactor with regards to PR review * Fix syntax errors * Fix missing return statement
15 lines
258 B
Go
15 lines
258 B
Go
package main
|
|
|
|
import (
|
|
"strconv"
|
|
|
|
"github.com/GeertJohan/go.incremental"
|
|
)
|
|
|
|
var identifierCount incremental.Uint64
|
|
|
|
func nextIdentifier() string {
|
|
num := identifierCount.Next()
|
|
return strconv.FormatUint(num, 36) // 0123456789abcdefghijklmnopqrstuvwxyz
|
|
}
|