10 lines
211 B
C#
10 lines
211 B
C#
namespace ModpackUpdater.Apps.Manager.Utils;
|
|
|
|
internal static class Extensions
|
|
{
|
|
public static string? Nullify(this string? @this)
|
|
{
|
|
return string.IsNullOrEmpty(@this) ? null : @this;
|
|
}
|
|
}
|