All checks were successful
Run the JSON parser tests / test (push) Has been skipped
10 lines
226 B
C#
10 lines
226 B
C#
namespace Jtr.Parsing.Extensions;
|
|
|
|
public static class CastingExtensions
|
|
{
|
|
public static T As<T>(this object @object)
|
|
{
|
|
ArgumentNullException.ThrowIfNull(@object);
|
|
return (T)@object;
|
|
}
|
|
} |