* Serializes the rectangle to a JSON object.
()
| 83 | * Serializes the rectangle to a JSON object. |
| 84 | */ |
| 85 | toJSON() { |
| 86 | return { |
| 87 | x: this.x, |
| 88 | y: this.y, |
| 89 | width: this.width, |
| 90 | height: this.height, |
| 91 | top: this.top, |
| 92 | right: this.right, |
| 93 | bottom: this.bottom, |
| 94 | left: this.left, |
| 95 | }; |
| 96 | } |
| 97 | } |
nothing calls this directly
no outgoing calls
no test coverage detected