2
0
mirror of synced 2025-02-11 16:06:46 +00:00

15 lines
277 B
C#
Raw Normal View History

2024-07-26 09:14:46 +02:00
namespace CodexPlugin
{
public static class CodexUtils
{
public static string ToShortId(string id)
{
if (id.Length > 10)
{
return $"{id[..3]}*{id[^6..]}";
}
return id;
}
}
}