[SupportedOSPlatform("browser")] // suppress CA1416 '...' is only"only supported on: 'browser''browser'"
public static partial class Code
{
[JSExport]
public static string NameOf([JSMarshalAs<JSType.Any>] object entity)
=> ((IHasName)entity).Name;
}