Moved UI to separate project, added Dockerfile & renamed project
All checks were successful
Run the JSON parser tests / test (push) Has been skipped

This commit is contained in:
2024-10-19 12:04:40 +02:00
parent 585447193d
commit 96c203f842
135 changed files with 153 additions and 15710 deletions

View File

@@ -0,0 +1,10 @@
namespace Jtr.Parsing.Extensions;
public static class CastingExtensions
{
public static T As<T>(this object @object)
{
ArgumentNullException.ThrowIfNull(@object);
return (T)@object;
}
}