Iceshrimp.NET/Iceshrimp.Backend/Core/Helpers/StringExtensions.cs
2024-01-13 20:25:27 +01:00

5 lines
No EOL
198 B
C#

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