mirror of
https://github.com/rjNemo/federation
synced 2026-06-10 03:56:39 +00:00
9 lines
160 B
JavaScript
9 lines
160 B
JavaScript
'use strict'
|
|
|
|
module.exports = function iterableToObject (iter) {
|
|
const obj = {}
|
|
for (const k of iter.keys()) {
|
|
obj[k] = iter.get(k)
|
|
}
|
|
return obj
|
|
}
|