Values returns the values of the JSON object
()
| 239 | |
| 240 | // Values returns the values of the JSON object |
| 241 | func (obj *JSONObject) Values() map[string]any { |
| 242 | return obj.values |
| 243 | } |
| 244 | |
| 245 | // Get returns the value of the key in the JSON object |
| 246 | func (obj *JSONObject) Get(key string) (any, bool) { |
no outgoing calls
no test coverage detected