You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <returns>true for all cases except when the property is an own non-configurable property, in which case false is returned in non-strict mode.</returns>
46
-
[Unary("delete")]
46
+
[Unary("delete")]
47
47
publicstaticboolDelete(dynamicarg)
48
48
{
49
49
returntrue;
@@ -57,7 +57,7 @@ public static bool Delete(dynamic arg)
57
57
/// </remarks>
58
58
/// <param name="arg">expression</param>
59
59
/// <returns>Undefined</returns>
60
-
[Unary("void")]
60
+
[Unary("void")]
61
61
publicstaticUndefinedVoid(dynamicarg)
62
62
{
63
63
returnnewUndefined();
@@ -71,7 +71,7 @@ public static Undefined Void(dynamic arg)
71
71
/// </remarks>
72
72
/// <param name="operand">An expression representing the object or primitive whose type is to be returned.</param>
73
73
/// <returns>string</returns>
74
-
[Unary("typeof")]
74
+
[Unary("typeof")]
75
75
publicstaticstringTypeOf(objectoperand)
76
76
{
77
77
returnstring.Empty;
@@ -84,7 +84,7 @@ public static string TypeOf(object operand)
84
84
/// </remarks>
85
85
/// <param name="operand">An expression representing the object or primitive whose type is to be returned.</param>
86
86
/// <returns>string</returns>
87
-
[Unary("typeof")]
87
+
[Unary("typeof")]
88
88
publicstaticstringTypeOf(Func<dynamic>operand)
89
89
{
90
90
returnstring.Empty;
@@ -97,7 +97,7 @@ public static string TypeOf(Func<dynamic> operand)
97
97
/// </remarks>
98
98
/// <typeparam name="O">An expression representing the object or primitive whose type is to be returned.</typeparam>
99
99
/// <returns>string</returns>
100
-
[GenericUnary("typeof")]
100
+
[GenericUnary("typeof")]
101
101
publicstaticstringTypeOf<O>()
102
102
{
103
103
returnstring.Empty;
@@ -112,7 +112,7 @@ public static string TypeOf<O>()
112
112
/// <typeparam name="C">Constructor to test against.</typeparam>
0 commit comments