mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-02 21:43:08 +00:00
15 lines
277 B
C#
15 lines
277 B
C#
namespace CodexPlugin
|
|
{
|
|
public static class CodexUtils
|
|
{
|
|
public static string ToShortId(string id)
|
|
{
|
|
if (id.Length > 10)
|
|
{
|
|
return $"{id[..3]}*{id[^6..]}";
|
|
}
|
|
return id;
|
|
}
|
|
}
|
|
}
|