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 {
5555 }
5656 }
5757
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-
8358 /// Returns the `true` if this JS value is null.
8459 /// If not, returns `false`.
8560 public var isNull : Bool {
You can’t perform that action at this time.
0 commit comments