Keys returns the keys of the JSON object
()
| 234 | |
| 235 | // Keys returns the keys of the JSON object |
| 236 | func (obj *JSONObject) Keys() []string { |
| 237 | return obj.keys |
| 238 | } |
| 239 | |
| 240 | // Values returns the values of the JSON object |
| 241 | func (obj *JSONObject) Values() map[string]any { |
no outgoing calls
no test coverage detected