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