···104104}
105105106106func TestInteropKnownMapsTricky(t *testing.T) {
107107+ t.Skip("TODO: these are currently disallowed in typescript implementation")
107108 assert := assert.New(t)
108108-109109- t.Skip("TODO: these are currently disallowed in typescript implementation")
110109111110 cid1str := "bafyreie5cvv4h45feadgeuwhbcutmh6t2ceseocckahdoe6uat64zmz454"
112111
-1
atproto/syntax/did.go
···1414type DID string
15151616var didRegex = regexp.MustCompile(`^did:[a-z]+:[a-zA-Z0-9._:%-]*[a-zA-Z0-9._-]$`)
1717-var plcChars = ""
18171918func isASCIIAlphaNum(c rune) bool {
2019 if (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') {