a lot of work
This commit is contained in:
9
ModpackUpdater.Apps.Manager/Utils/Extensions.cs
Normal file
9
ModpackUpdater.Apps.Manager/Utils/Extensions.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace ModpackUpdater.Apps.Manager.Utils;
|
||||
|
||||
internal static class Extensions
|
||||
{
|
||||
public static string? Nullify(this string? @this)
|
||||
{
|
||||
return string.IsNullOrEmpty(@this) ? null : @this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user