Checks if the resource is both loaded and free from errors
()
| 96 | |
| 97 | /** Checks if the resource is both loaded and free from errors */ |
| 98 | isReady(): boolean { |
| 99 | return !this.loading && this.error == undefined; |
| 100 | } |
| 101 | |
| 102 | /** Get a Value by its property */ |
| 103 | get(propUrl: string): JSONValue | null { |
no outgoing calls
no test coverage detected