* @see https://webidl.spec.whatwg.org/#dfn-default-iterator-object * @param {unknown} target * @param {'key' | 'value' | 'key+value'} kind
(target, kind)
| 752 | * @param {'key' | 'value' | 'key+value'} kind |
| 753 | */ |
| 754 | constructor (target, kind) { |
| 755 | this.#target = target |
| 756 | this.#kind = kind |
| 757 | this.#index = 0 |
| 758 | } |
| 759 | |
| 760 | next () { |
| 761 | // 1. Let interface be the interface for which the iterator prototype object exists. |
nothing calls this directly
no outgoing calls
no test coverage detected