Class: Boolean
- Defined in:
- opal/stdlib/json.rb,
opal/stdlib/native.rb more...
Instance Method Summary collapse
- #to_json ⇒ Object
-
#to_n ⇒ Object
The internal JavaScript value (with
valueOf
).
Instance Method Details
#to_json ⇒ Object
[View source]
148 149 150 |
# File 'opal/stdlib/json.rb', line 148 def to_json `(self == true) ? 'true' : 'false'` end |
#to_n ⇒ Object
Returns the internal JavaScript value (with valueOf
).
513 514 515 |
# File 'opal/stdlib/native.rb', line 513 def to_n `self.valueOf()` end |