5 lines
No EOL
198 B
C#
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)];
|
|
} |