Get a Value by its property
(propUrl: string)
| 101 | |
| 102 | /** Get a Value by its property */ |
| 103 | get(propUrl: string): JSONValue | null { |
| 104 | const result = this.propvals.get(propUrl); |
| 105 | if (result == undefined) { |
| 106 | // throw new Error(`not found property ${propUrl} in ${this.subject}`); |
| 107 | return null; |
| 108 | } |
| 109 | return result; |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * Get a Value by its property, returns as Array or throws error. Returns |
no outgoing calls
no test coverage detected