Class: Array
Instance Method Summary collapse
- #to_json ⇒ Object
-
#to_n ⇒ Object
Retuns a copy of itself trying to call #to_n on each member.
Instance Method Details
#to_json ⇒ Object
122 123 124 125 126 127 128 129 130 131 132 |
# File 'opal/stdlib/json.rb', line 122 def to_json %x{ var result = []; for (var i = 0, length = #{self}.length; i < length; i++) { result.push(#{`self[i]`.to_json}); } return '[' + result.join(', ') + ']'; } end |
#to_n ⇒ Object
Retuns a copy of itself trying to call #to_n on each member.
488 489 490 491 492 493 494 495 496 497 498 499 500 |
# File 'opal/stdlib/native.rb', line 488 def to_n %x{ var result = []; for (var i = 0, length = self.length; i < length; i++) { var obj = self[i]; result.push(#{Native.try_convert(`obj`, `obj`)}); } return result; } end |