Iceshrimp.NET/Iceshrimp.Backend/Core/Extensions/StringExtensions.cs
2024-01-24 03:03:20 +01:00

7 lines
No EOL
212 B
C#

namespace Iceshrimp.Backend.Core.Extensions;
public static class StringExtensions {
public static string Truncate(this string target, int maxLength) {
return target[..Math.Min(target.Length, maxLength)];
}
}