Files
FileFlowsPlugins/ComicNodes/ExtensionMethods.cs
2022-08-02 21:52:45 +12:00

7 lines
166 B
C#

namespace FileFlows.Comic;
internal static class ExtensionMethods
{
public static string? EmptyAsNull(this string str) => str == string.Empty ? null : str;
}