File tree Expand file tree Collapse file tree 1 file changed +0
-25
lines changed Expand file tree Collapse file tree 1 file changed +0
-25
lines changed Original file line number Diff line number Diff line change @@ -55,31 +55,6 @@ public enum JSValue: Equatable {
55
55
}
56
56
}
57
57
58
- public var isBoolean : Bool {
59
- guard case . boolean = self else { return false }
60
- return true
61
- }
62
-
63
- public var isString : Bool {
64
- guard case . string = self else { return false }
65
- return true
66
- }
67
-
68
- public var isNumber : Bool {
69
- guard case . number = self else { return false }
70
- return true
71
- }
72
-
73
- public var isObject : Bool {
74
- guard case . object = self else { return false }
75
- return true
76
- }
77
-
78
- public var isFunction : Bool {
79
- guard case . function = self else { return false }
80
- return true
81
- }
82
-
83
58
/// Returns the `true` if this JS value is null.
84
59
/// If not, returns `false`.
85
60
public var isNull : Bool {
You can’t perform that action at this time.
0 commit comments