mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-02-25 02:08:27 -06:00
Added WebRequest node
This commit is contained in:
10
BasicNodes/ExtensionMethods.cs
Normal file
10
BasicNodes/ExtensionMethods.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace BasicNodes
|
||||
{
|
||||
internal static class ExtensionMethods
|
||||
{
|
||||
public static string? EmptyAsNull(this string str)
|
||||
{
|
||||
return str == string.Empty ? null : str;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user