mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-31 02:39:51 -06:00
7 lines
173 B
C#
7 lines
173 B
C#
namespace FileFlows.DiscordNodes;
|
|
|
|
internal static class ExtensionMethods
|
|
{
|
|
public static string? EmptyAsNull(this string str) => str == string.Empty ? null : str;
|
|
}
|