Key returns key of the current pair.
()
| 35 | |
| 36 | // Key returns key of the current pair. |
| 37 | func (it *ObjectIterator) Key() string { |
| 38 | return string(it.src[it.idx].k) |
| 39 | } |
| 40 | |
| 41 | // Value returns value of the current pair |
| 42 | func (it *ObjectIterator) Value() JSON { |
no outgoing calls
no test coverage detected