Key returns key of the current pair.
()
| 30 | |
| 31 | // Key returns key of the current pair. |
| 32 | func (it *ObjectIterator) Key() string { |
| 33 | return string(it.src[it.idx].k) |
| 34 | } |
| 35 | |
| 36 | // Value returns value of the current pair |
| 37 | func (it *ObjectIterator) Value() JSON { |
no outgoing calls
no test coverage detected