mirror of
https://github.com/g3rv4/GetMoarFediverse.git
synced 2024-11-24 16:43:17 +01:00
11 lines
322 B
C#
11 lines
322 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace GetMoarFediverse;
|
|
|
|
public static class Extensions
|
|
{
|
|
public static bool IsNullOrEmpty([NotNullWhen(returnValue: false)]this string? s) => string.IsNullOrEmpty(s);
|
|
|
|
public static bool HasValue([NotNullWhen(returnValue: true)]this string? s) => !s.IsNullOrEmpty();
|
|
}
|