Repository URL to install this package:
|
Version:
0.9.6 ▾
|
// [Symbol.iterator]() {
// return {
// index: 0,
// hasNext() {},
// next() {
// this.index += 1
// return this.index
// }
// }
// return fromMapToIterator(this.map)
// }
for (let value of state) {
const [identifier, item] = value
// const identifier = value[0]
// const item = value[1]
console.log(identifier, item)
}