MCPcopy
hub / github.com/apache/answer / EnShortID

Function EnShortID

pkg/uid/sid.go:65–71  ·  view source on GitHub ↗
(id string)

Source from the content-addressed store, hash-verified

63}
64
65func EnShortID(id string) string {
66 num, err := strconv.ParseInt(id, 10, 64)
67 if err != nil {
68 return id
69 }
70 return NumToShortID(num)
71}
72
73func DeShortID(sid string) string {
74 num, err := strconv.ParseInt(sid, 10, 64)

Callers 15

QuestionURLFunction · 0.92
AnswerURLFunction · 0.92
GetQuestionMethod · 0.92
QuestionInfoRedirectMethod · 0.92
GetObjectTimelineMethod · 0.92
ShowFormatMethod · 0.92
parseItemMethod · 0.92
AdminSearchListMethod · 0.92
ListByGroupMethod · 0.92
ListPagedMethod · 0.92

Calls 1

NumToShortIDFunction · 0.85

Tested by

no test coverage detected