mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-30 23:29:29 -06:00
11 lines
215 B
C#
11 lines
215 B
C#
namespace BasicNodes
|
|
{
|
|
internal static class ExtensionMethods
|
|
{
|
|
public static string? EmptyAsNull(this string str)
|
|
{
|
|
return str == string.Empty ? null : str;
|
|
}
|
|
}
|
|
}
|