Files
FileFlowsPlugins/Pushover/ExtensionMethods.cs
2024-02-20 14:10:09 +13:00

15 lines
442 B
C#

namespace FileFlows.Pushover;
/// <summary>
/// Extension methods
/// </summary>
internal static class ExtensionMethods
{
/// <summary>
/// Returns an empty string as null, otherwise returns the original string
/// </summary>
/// <param name="str">the input string</param>
/// <returns>the string or null if empty</returns>
public static string? EmptyAsNull(this string str) => str == string.Empty ? null : str;
}