GetObject returns the property corresponding to the provided key as an Object
(key string)
| 106 | // GetObject returns the property corresponding to the |
| 107 | // provided key as an Object |
| 108 | func (o Object) GetObject(key string) Object { |
| 109 | return NewObject(o.GetNode(key), o.source) |
| 110 | } |
| 111 | |
| 112 | // GetString returns the property corresponding to the |
| 113 | // provided key as a string, or the defaultVal if the |
no test coverage detected