()
| 29 | } |
| 30 | |
| 31 | func (prop *Property) AsString() string { |
| 32 | if prop.data == nil { |
| 33 | prop.data = "" |
| 34 | } |
| 35 | return prop.data.(string) |
| 36 | } |
| 37 | |
| 38 | func (prop *Property) AsJSON() gjson.Result { |
| 39 | if prop.data == nil { |
no outgoing calls
no test coverage detected