(value)
| 117 | } |
| 118 | |
| 119 | setValue (value) { |
| 120 | if (!this.ready) throw new Error('JSON Editor not ready yet. Make sure the load method is complete') |
| 121 | |
| 122 | this.root.setValue(value) |
| 123 | return this |
| 124 | } |
| 125 | |
| 126 | validate (value) { |
| 127 | if (!this.ready) throw new Error('JSON Editor not ready yet. Make sure the load method is complete') |
no outgoing calls
no test coverage detected